我想显示一个共享意图作为这样的列表:
但是在我的情况下,它是这样显示的,我不希望这样:
看了很多帖子后,我找不到如何做。
欢迎光临。
我的代码:
意图共享意图=新意图(android.content.Intent.ACTION_SEND); SharingIntent.setType(“ text / plain”);
String shareBody = "https://google.com";
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"google");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "share"));