我无法与Facebook分享字符串。它适用于电子邮件,短信等,但没有任何与Facebook,我打开它,它只是空白。
您知道我是否需要任何许可(除了清单中的互联网连接)或图书馆或其他?
public void onClick(View v) {
//create the send intent
String result = builder.toString();
Intent shareIntent =
new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_SUBJECT,
"This is your list");
shareIntent.putExtra(Intent.EXTRA_TEXT, result);
startActivity(Intent.createChooser(shareIntent, "Choose how to share your list"));
}
});
}
有什么想法吗?