I have an app that can share some plain text via Fb, Twitter or other apps. I'd like to get triggered if user really shared my content or just canceled(or failed) share process.
I tried to start activity for result but since Intent.ACTION_SEND
doesn't return any result I get resultCode = RESULT_CANCELED
as explained here, any tricks are appreciated.
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "my text);
startActivityForResult(shareIntent,123);