I need to make my app post an image with some text to facebook.
Here's my code
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/jpg");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "text1");
shareIntent.putExtra(Intent.EXTRA_TEXT, "text2");
startActivity(Intent.createChooser(shareIntent, "Share via..."));
It does post the image fine, but I can't find a way how to attach text to it.

While, for example, in instagram it does post both text & photo fine. Also notice the posting window is different.

Any ideas? Thanks!