I'm using next code for sharing:
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, getString(R.string.share_text));
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
sendIntent.setType("image/png");
startActivityForResult(Intent.createChooser(sendIntent,getResources().getString(R.string.share_via)), REQUEST_SHARE_RESULT);
In the Activity you start your Intent from you have to overwrite onActivityResult
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent i) {
...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With