gpt4 book ai didi

android - Intent : remove Always/Only once buttons

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:32:59 24 4
gpt4 key购买 nike

我是 Android 开发的新手。

打开 Intent.ACTION_GET_CONTENT 时是否可以删除两个按钮(始终/仅一次)?

这是我当前的代码。

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent,PICK);

最佳答案

我找到了实现这个的方法:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
Intent openInChooser = Intent.createChooser(intent, "Open in...");
startActivityForResult(openInChooser,PICK);

关于android - Intent : remove Always/Only once buttons,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17338301/

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