gpt4 book ai didi

android - 像我的 Android 手机上的其他应用一样显示共享菜单

转载 作者:行者123 更新时间:2023-11-29 19:29:11 24 4
gpt4 key购买 nike

我已经在我的应用的操作栏上添加了分享操作,并按照以下步骤操作:

http://www.codewithasp.net/2016/11/share-action-provider-android-application-actionbar-appcompat-v7.html

这在我的操作栏上显示了一个漂亮简单的共享菜单。但问题是我手机上的所有其他应用程序都有不同的共享菜单,而且它们都很相似。

这是我的分享菜单的样子:

enter image description here

这是其他应用在我的设备上显示共享菜单的方式

enter image description here

最佳答案

与其创建带有共享选项的下拉菜单,不如在单击共享按钮或菜单选项后调用共享 Intent 。这样,可能的应用列表就会显示在您粘贴的示例中。

这是您如何做到这一点的示例。

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, content);
sendIntent.setType("text/plain");
getContext().startActivity(sendIntent);

关于android - 像我的 Android 手机上的其他应用一样显示共享菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40527216/

24 4 0