tags:

views:

90

answers:

2

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
+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
Excellent answer! I was looking for it since a long time.
Sana