Android Email Reading

Android documents starting with an email intent to send email using Intent.ACTION_SEND.

Is there an intention that directs the user to read his email or launches the default email application?

An application that launches the β€œread mail” intent will not gain access to email data.

+4
source share
2 answers

Is there an intention that directs the user to read his email or launches the default email application?

There is no standard Intent for this, sorry.

+5
source

Just try it, it works for me

  Intent intent = getPackageManager().getLaunchIntentForPackage("com.android.email"); startActivity(intent); 
+1
source

All Articles