This is not working for Facebook because Facebook can share only a link via ACTION_SEND.
if you want to send Text As well as you mentioned:
Firstly you have to get the list of installed application that support ACTION_SEND.
Then build a dialog
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
List activities = getPackageManager().queryIntentActivities(sharingIntent,0);
After the activities now build a dialog to show activities .then get the intent for Facebook and share it with Facebook API all other to be handled by itself but please pass the class name for other activities.
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setClassName(,);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"hello");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "facebook");