Is there any URI which can point to the GMAIL App in android and help me launch it?
A:
There is no documented and supported Intent
for launching Gmail -- sorry!
CommonsWare
2010-08-12 17:45:24
+2
A:
I'm using this in my apps:
Intent mailClient = new Intent(Intent.ACTION_VIEW);
mailClient.setClassName("com.google.android.gm", "com.google.android.gm.ConversationListActivity");
startActivity(mailClient);
droid_fan
2010-08-28 19:07:04
Excellent answer! I was looking for it since a long time.
Sana
2010-08-29 17:47:04