现在我想分享的文字下面的链接是我的代码
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
任何帮助将提前感激,谢谢。