最近在查找更新图片到相册的时候发现的一种最简单的实现方式
MediaStore.Images.Media.insertImage(getContext().getContentResolver(),file.getAbsolutePath(),file.getName(),null);
getContext().sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(new File(file.getPath()))));
MediaScannerConnection.scanFile(getContext(), new String[]{file.getAbsolutePath()}, null, null);