我尝试使用 ShareActionProvider。这是工作,但我想在用户点击 Twitter 时输入不同的文本。
我该如何解决?
这是我的代码,对象 News 包含一个标题和一个 url
When he clicks on Twitter :
@account_name myText
And for other
myText
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.detail_news, menu);
MenuItem item = menu.findItem(R.id.action_share);
shareActionProvider = (ShareActionProvider) item.getActionProvider();
shareActionProvider
.setShareHistoryFileName(ShareActionProvider.DEFAULT_SHARE_HISTORY_FILE_NAME);
shareActionProvider.setShareIntent(createShareIntent());
return true;
}
private Intent createShareIntent() {
// Here, is Twitter, add "@Televesdre" in the message
News news = detailAdapter.getCurrentItem(viewPager.getCurrentItem());
String message = news.getTitle() + "\n\n Article: " + news.getUrl();
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, message);
return shareIntent;
}
我在编码之前搜索如何做,因为我不知道该怎么做