在我的项目中,我Bitmap
使用以下方法将给定的内容保存到手机的本地图库中:
Bitmap bmp = some_fancy_bitmap;
imgeUrl = MediaStore.Images.Media.insertImage(getContentResolver(), bmp, "some Title", "some_Description");
MediaStore.Images.Media.insertImage
获取 source Bitmap
,保存它,并将 aString
与URL
新创建null
的图像一起返回,或者如果图像由于任何原因未能存储。
这是在成功保存的情况下返回的 imageUrl 示例:content://media/external/images/media/223
。
我现在想以资源的形式将它传递Bitmap
给一个新的 。Activity
Uri
如何将我返回的 imageUrl 或直接Bitmap
bmp 转换为资源的Uri
?
注意: imageUrl 是 a String
,我想得到一个Uri
,而不是URI
.