如何将文件:// uri转换为content:// uri?

时间:2012-02-05 16:36:38

标签: android uri

我发现在我的设备上,默认的媒体显示工具并没有向我展示如果我有一个uri是:

file://mnt/sdcard/DCIM/Image.jpg

当我选择具有内置意图的图像时,我得到了这个:

content://media/external/images/media/247 

这两个文件都显示相同的文件,但是当我使用第一个文件时,我没有任何共享选项。

我的问题是,如何找到文件Uri的内容Uri?

1 个答案:

答案 0 :(得分:11)

我正在创建该文件,因此我有一个File对象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?