0

In my app i have share feature to share simple text. Its work for all app but when send on fb its blank. there is no message display. Below is my code -

 Intent sendIntent = new Intent();
    sendIntent.setAction(Intent.ACTION_SEND);

    sendIntent.putExtra(Intent.EXTRA_SUBJECT, mEventDetailModel.name);
    sendIntent.putExtra(Intent.EXTRA_TEXT, shareText);
    sendIntent.setType("text/plain");
    startActivity(sendIntent);

how to share text on fb.

TIA

Ravi Bhandari
  • 4,682
  • 8
  • 40
  • 68

1 Answers1

0

Have a look at the code samples mentioned here for a complete clear definition on sharing on Facebook from Android
https://developers.facebook.com/docs/sharing/android

Shadab K
  • 1,677
  • 1
  • 16
  • 25