gpt4 book ai didi

android - 使用图像启动 ACTION_EDIT 并返回图像的教程/引用

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:27:51 27 4
gpt4 key购买 nike

我正在编写一个使用相机的应用程序。我想发布一个允许用户用线条和文本注释生成的图像的 Intent ,并且我想为用户提供他们可以使用的适当图像编辑应用程序的列表,但我遇到了这些问题:1. 当我执行这段代码时,并不是所有的图像编辑应用程序都出现在列表中:

editIntent = new Intent();
editIntent.setAction(Intent.ACTION_EDIT);
Uri imageToEditUri = selectedPhotoLocation; // Uri of existing photo
String imageToEditMimeType = "image/*";
editIntent.setDataAndType(imageToEditUri, imageToEditMimeType);
startActivityForResult(Intent.createChooser(editIntent,"Edit Image"), IMPLICIT_EDIT_IMAGE);

Is there a way to get a list of apps that will respond to Intent.ACTION_EDIT?

2。 PS Express 是我发现的唯一一个在 data.getDate() Uri 返回到 OnActivityResult() 中返回编辑图像 Uri 的应用程序,其他应用程序用户被迫保存,记住位置,然后重新选择编辑图像图片。

Is there a way to know what apps return the Uri of the image to OnActivityResult()

最佳答案

Not all image editting apps appear in the list when I perform this code

仅仅因为一个应用实现了图像编辑并不一定意味着它被设置为允许第三方链接到他们的图像编辑 Activity 。

Is there a way to get a list of apps that will respond to Intent.ACTION_EDIT?

如果您想在运行时以编程方式执行此操作,请参阅 Jedil 的回答。

Is there a way to know what apps return the Uri of the image to OnActivityResult()

否,除了那些有文档说明开发人员应如何与之集成的应用程序。

关于android - 使用图像启动 ACTION_EDIT 并返回图像的教程/引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11614912/

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