打开图像文件在Android中出错

时间:2011-07-14 13:16:14

标签: android android-intent android-image android-gallery

我正在尝试在图库中打开jpg图像文件。这给出了一个错误。我使用下面的代码

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("/mnt/sdcard/image123.jpg"),"image/jpeg");
startActivityForResult(intent, 900);

这提供了在库中打开文件的选项。我从列表中选择了Gallery。但它没有开放。我使用ASTRO文件管理器并打开相同的图像文件。它现在开放很好。如果出现问题,请告诉我。

2 个答案:

答案 0 :(得分:0)

你在哪里/mnt/sdcard。请改为Environment.getExternalStorageDirectory().getAbsolutePath()

答案 1 :(得分:0)

指定的图片路径?你不能。

请参考我的问题How to access different File Manager specific path。请参阅此链接,然后您就会得到答案。