Share Text on Facebook from Android App via ACTION_SEND Share Text on Facebook from Android App via ACTION_SEND android android

Share Text on Facebook from Android App via ACTION_SEND


To make the Share work with the facebook app, you only need to have suply at least one link:

Intent intent = new Intent(Intent.ACTION_SEND);intent.setType("text/plain");intent.putExtra(Intent.EXTRA_TEXT, "Wonderful search engine http://www.google.fr/");startActivity(Intent.createChooser(intent, "Share with"));

This will show the correct sharing window but when you click on share, nothing happends (I also tried with the official Twitter App, it does not work).

The only way I found to make the Facebook app sharing work is to share only a link with no text:

Intent intent = new Intent(Intent.ACTION_SEND);intent.setType("text/plain");intent.putExtra(Intent.EXTRA_TEXT, "http://www.google.fr/");startActivity(Intent.createChooser(intent, "Share with"));

It will show the following window and the Share button will work:

facebook share

Apparently it automatically takes an image and text from the link to populate the share.

If you want to share only text, you will have to use the facebook api: https://github.com/facebook/facebook-android-sdk


06/2013 :

  • This is a bug from Facebook, not your code
  • Facebook will NOT fix this bug, they say it is "by design" that they broke the Android share system : https://developers.facebook.com/bugs/332619626816423
  • use the SDK or share only URL.
  • Tips: you could cheat a little using the web page title as text for the post.


First you need query Intent to handler sharing option. Then use package name to filter Intent then we will have only one Intent that handler sharing option!

Share via Facebook

Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);shareIntent.setType("text/plain");shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Content to share");PackageManager pm = v.getContext().getPackageManager();List<ResolveInfo> activityList = pm.queryIntentActivities(shareIntent, 0);for (final ResolveInfo app : activityList) {    if ((app.activityInfo.name).contains("facebook")) {        final ActivityInfo activity = app.activityInfo;        final ComponentName name = new ComponentName(activity.applicationInfo.packageName, activity.name);        shareIntent.addCategory(Intent.CATEGORY_LAUNCHER);        shareIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |             Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);        shareIntent.setComponent(name);        v.getContext().startActivity(shareIntent);        break;   }}

Bonus - Share via Twitter

Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);shareIntent.setType("text/plain");shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Content to share");PackageManager pm = v.getContext().getPackageManager();List<ResolveInfo> activityList = pm.queryIntentActivities(shareIntent, 0);for (final ResolveInfo app : activityList) {    if ("com.twitter.android.PostActivity".equals(app.activityInfo.name)) {        final ActivityInfo activity = app.activityInfo;        final ComponentName name = new ComponentName(activity.applicationInfo.packageName, activity.name);        shareIntent.addCategory(Intent.CATEGORY_LAUNCHER);        shareIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |             Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);        shareIntent.setComponent(name);        v.getContext().startActivity(shareIntent);        break;   }}

And if you want to find how to share via another sharing application, find it there Tép Blog - Advance share via Android