现在我想通过以下链接分享文字是我的代码
String myText = "Hey!\nThis is a my Text!";
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
String extraText = "www.mylink.com\n\n" + myText ;
share.putExtra(Intent.EXTRA_TEXT, extraText);
startActivity(Intent.createChooser(share, "Share with Friends"));
所以它可以正常使用gmail,twitter等工作,但它不适用于facebook
在Facebook上它只分享链接,但没有显示我的文字
我想要这种类型分享
www.mylink.com
here is my text
任何帮助将不胜感激, 在此先感谢。
答案 0 :(得分:4)
你在这里遇到的问题可能是Facebook没有查看Intent中提供的额外信息。因为它适用于Gmail和Twitter。
答案 1 :(得分:1)
你无法使用Share Intent与FB上的文本分享链接, 您必须尝试使用FB图表API进行墙贴。