i want to share something with my friends. so i preferred android share intent. i used,
Intent i=new Intent(android.content.Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(android.content.Intent.EXTRA_TEXT, "my share text");
startActivity(Intent.createChooser(i, "share via"));
this showing a list of available apps like Facebook, Twitter, Gmail, Message, Skype.. e.t.c.. If i pressed a Twitter in the sense, the above text "my share text" showing in the tweet text box. But if i select Facebook, the status message not showing. i want to set the status message programatically.
how can i achieve this?