0

My app has the share intent which displays a list of Apps which can be used to share. I am doing it like this.

final Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_SUBJECT, "Cool app");
intent.putExtra(Intent.EXTRA_TEXT, "Check out www.myappurl.com");
startActivity(Intent.createChooser(intent, "Share"));

This works perfectly for every other app.

However if the user chooses facebook, then Facebook only takes the URL and pulls in content from the URL it does not display the "Check out" part at all, this makes it seem like I am spamming peoples walls instead of actually letting them share what they want to share.

Anyone have any solutions?

mbwasi
  • 3,612
  • 3
  • 30
  • 36
  • What do you mean by "check out"? Is this a duplicate of: http://stackoverflow.com/questions/3515198/share-text-on-facebook-from-android-app-via-action-send – Nathan Fig Sep 08 '11 at 16:50
  • "Check out" was just part of the text I am trying to share "Check out www.myappurl.com". Yes it seems to be a duplicate – mbwasi Sep 08 '11 at 19:02

0 Answers0