我发现在我的设备上,默认的媒体显示工具并没有向我展示如果我有一个uri是:
file://mnt/sdcard/DCIM/Image.jpg
当我通过内置意图选择图像时,我得到了这个:
content://media/external/images/media/247
解决方法
我正在制作文件,所以我有一个File对象文件.
所以我现在这样做是为了让文件的Uri作为“content://”Uri.
Uri capturedImage = Uri.parse( android.provider.MediaStore.Images.Media.insertImage( getContentResolver(),file.getAbsolutePath(),null,null));
有信心回答这个问题How can I capture an image in Android and have it show up in the gallery?