Email: What are the values ​​of Intent.ACTION_SEND?

When i run

startActivity(new Intent(Intent.ACTION_SEND)) 

to send emails, which are return values ​​that I can check in

onActivityResult(){...} 

?

Because (for example):

  • if the user logs out of the mail client by pressing su "Cancel", I want to execute method X (...)
  • otherwise I will execute method Y (...)

But for this I need to know the return values ​​of the Intent. Is it possible?

+2
source share
2 answers

I do not think this is indicated.

You cannot be sure of what activity will end the work with your intentions, and each action can return different resultCodes for the same logical result.

.

+6

, , H-API ( ), , . : " ?" " ?". " "? , , .

"" , , , . . Devs .

0

All Articles