我想将拍摄的照片添加到 MediaStore,以便 Gallery 应用程序可以找到它们(无需重新启动设备)。应用程序的最小 sdk 为 9。任何帮助、博客或文档表示赞赏。
问问题
3633 次
4 回答
7
在大多数设备上,您只需稍等片刻,就会自动检测到新照片。
如果要立即刷新图库,则需要使用 MediaScanner 类,它将刷新图库 - 删除已删除的照片,添加新照片等等......
public void refreshGallery() {
Intent scanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
String newPhotoPath = "file:" + image.getAbsolutePath(); // image is the created file image
File file = new File(newPhotoPath);
Uri contentUri = Uri.fromFile(file);
scanIntent.setData(contentUri);
sendBroadcast(scanIntent);
}
希望这有帮助!
于 2014-02-17T07:17:15.257 回答
1
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStorageDirectory())));
在“保存”代码之后插入这行代码。
这将触发媒体扫描,所有文件夹中的所有媒体文件(“.nomedia”文件除外)都将更新并在图库中可见。
来源。
或者
// Tell the media scanner about the new file so that it is
// immediately available to the user.
MediaScannerConnection.scanFile(this,
new String[] { file.toString() }, null,
new MediaScannerConnection.OnScanCompletedListener() {
public void onScanCompleted(String path, Uri uri) {
Log.i("ExternalStorage", "Scanned " + path + ":");
Log.i("ExternalStorage", "-> uri=" + uri);
}
});
于 2014-02-17T07:17:15.633 回答
0
好的,它是我的代码,它对我有用,它提供了我可以在 Android Gallery 中看到的所有图像,只需从此行调用此函数
getallimages(Environment.getExternalStorageDirectory());
我的功能如下
private void getallimages(File dir)
{
String[] STAR = { "*" };
final String orderBy = MediaStore.Images.Media.DEFAULT_SORT_ORDER;
Cursor imagecursor = cntx.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, STAR, null, null, orderBy);
int image_column_index = imagecursor.getColumnIndex(MediaStore.Images.Media.DATA);
int count = imagecursor.getCount();
for (int i = 0; i < count; i++) {
imagecursor.moveToPosition(i);
int id = imagecursor.getInt(image_column_index);
ImageItem imageItem = new ImageItem();
if(new File(imagecursor.getString(imagecursor.getColumnIndex(MediaStore.Images.Media.DATA))).length()<=10485760)
{
imageItem.filePath = imagecursor.getString(imagecursor.getColumnIndex(MediaStore.Images.Media.DATA));
imageItem.id = id;
imageItem.selection = false; //newly added item will be selected by default
controller.images.add(imageItem);
}
}
}
于 2014-02-17T07:16:42.103 回答
0
您可以要求 MediaScanner 扫描特定文件,即按需扫描您的图像文件。与仅要求 MediaScanner 扫描所有内容以查找新文件相比,这应该产生更少的开销。
于 2014-02-17T07:24:11.153 回答