通过ACTION_VIEW打开图像时无法正常查看

时间:2016-11-14 09:18:12

标签: android image android-intent

我正在尝试使用ACTION_VIEW打开图像,并执行以下步骤

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.putExtra(MediaStore.EXTRA_FINISH_ON_COMPLETION, true);
intent.setDataAndType(Uri.parse("file://" + "/storage/emulated/0/Media/Images/sent/IMG_149435406522784_1361292.jpg"), "image/*");
activity.startActivity(intent);

在某些手机中,逻辑工作正常,但在某些手机中显示问号图像。

如何解决此问题。

0 个答案:

没有答案