在Android应用程序中的意图标题Action_SEND

时间:2017-11-11 13:40:28

标签: android android-intent

我使用ACTION_SEND时会收到默认活动名称。如何将标题从活动名称更改为我想要选择的标题?

到目前为止已经使用了以下

Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "My subject");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, finalUrl);
startActivity(Intent.createChooser(sharingIntent, getResources().getString(R.string.app_name)));

1 个答案:

答案 0 :(得分:2)

您可以使用以下

设置标题

startActivity(Intent.createChooser(sharingIntent,“your title”)));