I'm trying to share pictures and text with the Facebook SDK 4.2, but when I call the share function (Via SDK or intent) all I get is an Image without text. Here's the code
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("image/*");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + mFilepath));
shareIntent.putExtra(Intent.EXTRA_TEXT,"example");
shareIntent.setPackage("com.facebook.katana");
startActivity(shareIntent);
Facebook does not allow pre-filling the messages. See this discussion for details.