我有一个图像文件路径存储在我的数据库中。现在使用它,我想打开我的画廊从SD卡的图像。我怎么能做到这一点。我已经看到的方法从URI和使用这个方法,但我得到错误
File file = new File(filename);
Uri uri = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.setType("image/*");
startActivity(intent); /** replace with your own uri */
如何修复它,
04-20 08:42:23.516: E/AndroidRuntime(16815): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=file:///mnt/sdcard/My%20App/image_umxto_1.jpg }
顺祝商祺
4条答案
按热度按时间nhjlsmyf1#
用这个密码告诉我
hfsqlsce2#
您也可以使用下面的代码:::
lmvvr0a83#
您可以使用下面的行来执行任务:::
nr7wwzry4#
我得到了FileUriExposedException,经过一些挖掘后找到了解决方案。将文件路径转换为URI并将其传入Intent。
希望能有所帮助。