使用文件路径在库中打开图像

时间:2012-04-20 03:36:40

标签: java android eclipse

我的数据库中存储了一个图像文件路径。现在使用它我想在我的画廊中打开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 }

最好的问候

3 个答案:

答案 0 :(得分:19)

Intent intent = new Intent();
            intent.setAction(Intent.ACTION_VIEW);
            intent.setDataAndType(Uri.fromFile(new File(filename)), "image/*");
            startActivity(intent);

使用此代码告诉我

答案 1 :(得分:2)

您还可以使用以下代码:::

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + "/sdcard/test.jpg"), "image/*");
startActivity(intent);

答案 2 :(得分:1)

您可以使用以下行执行任务:::

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("content://media/external/images/media/16"))); /** replace with your own uri */