I'm starting email activity
// send mail
final int SENT_MAIL = 1;
startActivityForResult (Intent.createChooser (me, "Send Mail"), SENT_MAIL);
and in
onActivityResult (int req, int res, Intent data)
I am trying to find the result of sending an email to confirm whether my email was sent or was dropped by the user. I get null for Intent data
ie data = null
in onActivityResult (int req, int res, Intent data), res is always 0.
T. res = 0;
Please let me know what can be done in this case?
Thanks in advance!
android android-intent email android-manifest
Abhinava
source share