Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
I am using an intent to open an Activity and allow the user to send an email. Is it possible to be notified of the result after the user is done with this activity?
Fro example be notified that email was sent, or cancel was clicked.
Unfortunately, I don't think this is specified for any of the intents regarding email or text messaging and the like.
You can't be sure which Activity will end up handling your intent, and each Activity could return different resultCodes for the same logical outcome.
In my testing the text messaging app in the emulator returned zero no matter the outcome.
Answer is from this question
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