我有一个应用程序想要在图库应用程序中查看图像。我使用这段代码来查看它:
File cachedImage = cache.getFile(image.getImageUrl());
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(cachedImage), "image/*");
startActivity(intent);
这有效,除非我单击此处的编辑设置:
我得到没有应用程序可以执行此操作消息:
有什么办法可以使这项工作?我需要传递额外的额外内容吗?我知道 Gmail 应用程序能够查看图库中的图像附件,并且编辑功能有效。这是在果冻豆上。