i'm use
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse("file//res/drawable/u.png");
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));
//I use sumsung real for device.and i choose share on facebook. //But content is empty not my image to shared i can't shared image.
This is intent action send isn't use facebook sdk. can you help me please?
