我正在尝试使用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);
在某些手机中,逻辑工作正常,但在某些手机中显示问号图像。
如何解决此问题。