now i want to share text with a link below is my code
String myText = "Hey!
This is a my Text!";
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
String extraText = "www.mylink.com
" + myText ;
share.putExtra(Intent.EXTRA_TEXT, extraText);
startActivity(Intent.createChooser(share, "Share with Friends"));
so it work work fine with gmail, twitter etc. but it is not working on facebook
on facebook it share only link but there are not shown my text
i want to this type sharing
www.mylink.com
here is my text
Any help would be appreciated,
Thanks in Advance.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…