Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook Android Intent

i have a problem with this intent. this intent is supose to send a text type of message. everything works email,sms,twitter and whatever is on the phone. but the only one that has a problem is facebook, it will try to post as a link and not a text.

Intent s = new Intent(android.content.Intent.ACTION_SEND);

  s.setType("text/plain");
  s.putExtra(Intent.EXTRA_SUBJECT, "Quote");
  s.putExtra(Intent.EXTRA_TEXT, qoute);

  startActivity(Intent.createChooser(s, "Quote"));
like image 869
zaid Avatar asked Jun 19 '10 21:06

zaid


1 Answers

This is a flaw in the Facebook application. Please complain to the authors of that application, and hopefully they will fix their bug.

like image 170
CommonsWare Avatar answered Oct 14 '22 01:10

CommonsWare