我使用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)));
答案 0 :(得分:2)
您可以使用以下
设置标题startActivity(Intent.createChooser(sharingIntent,“your title”)));