gpt4 book ai didi

android - Intent 和分享我的申请

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

我在共享我的应用程序时遇到了很多麻烦。

public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.exit: System.exit(0);
break;

case R.id.icontext: String url = "http://www.manaforged.com";
String shareText = url + "\nCheck this gaming community out!";
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("plain/text");
sendIntent.putExtra(Intent.EXTRA_TEXT, shareText);
startActivity(Intent.createChooser(sendIntent, "Share"));
break;
}
return true;

我只有 2 个选项 Gmail 和其他一些随机的东西。我看到其他人使用大致相同的代码但有更多选项的屏幕截图。我的手机上安装了 facebook 应用程序。 API 是否更改,我正在查看旧信息?我对此感到非常沮丧。有什么想法吗?

最佳答案

sendIntent.setType("plain/text") 更改为 sendIntent.setType("text/plain")它会解决你的问题..

关于android - Intent 和分享我的申请,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7396967/

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