我通过网络搜索并使用共享意图找到了此共享到 facebook、twitter 或电子邮件。这个共享意图是假设有那些 facebook、twitter 图标可供选择共享吗?当我在模拟器中运行时,它写道没有应用程序可以运行此操作。是无法在模拟器中运行共享还是我的代码没有完全完成。
下面是我的代码
btnShare.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("plain/text");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT,
"This is the text that will be shared.");
startActivity(Intent.createChooser(sharingIntent,
"Share via"));
}
});