gpt4 book ai didi

android - Intent.ACTION_VIEW 不允许在图库应用程序中进行编辑

转载 作者:太空狗 更新时间:2023-10-29 15:17:17 27 4
gpt4 key购买 nike

我有一个应用程序想要在图库应用程序中查看图像。我使用这段代码来查看它:

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

这有效,除非我点击此处的编辑设置:

enter image description here

我收到没有应用可以执行此操作的消息:

enter image description here

有什么方法可以实现吗?我需要通过额外的额外费用吗?我知道 Gmail 应用程序能够查看图库中的图像附件并且编辑功能有效。这是在 JellyBean 上。

最佳答案

Is there some way to make this work?

安装一个可以编辑图片的应用程序。您的屏幕截图似乎是 Gallery 应用程序的屏幕截图,它可能正在尝试使用 ACTION_EDIT 启动一个 Activity 来编辑图片,但没有这样的 Activity 可用。

关于android - Intent.ACTION_VIEW 不允许在图库应用程序中进行编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11667232/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com