无法通过Android的共享意向的链接共享文本(Unable to share text with

2019-07-17 12:40发布

现在我想分享的文字下面的链接是我的代码

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

任何帮助将提前感激,谢谢。

Answer 1:

你有这里的问题可能是,Facebook的不看在Intent提供的额外信息。 因为它适用于Gmail和Twitter的。

看看Android和Facebook分享意图的方式..



Answer 2:

您对使用共享意向FB文着共享链接,你必须设法做的墙后这个FB图形API。



文章来源: Unable to share text with a link through Android Share Intent