1

I wanna enable sharing image + text to all apps in Android that why I used ACTION_SEND .. but my problem is that it doesn't work with Facbook, although it's working with other apps but with face book it only get the image without the text ... any solution ?

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse("file:///sdcard/image.jpg");
sharingIntent.setType("image/*");
sharingIntent.putExtra(Intent.EXTRA_TEXT, "Body text of the new
status");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image
using"));
mnagy
  • 1,085
  • 1
  • 17
  • 36

0 Answers0