Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any URI which can point to the GMAIL App in android and help me launch it?

share|improve this question

6 Answers

up vote 12 down vote accepted

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);
share|improve this answer
1  
Excellent answer! I was looking for it since a long time. – Sana Aug 29 '10 at 17:47
1  
i searched for 4 hours and now i got my ans ,,, thanks a ton – djk Mar 24 '11 at 12:26
6  
That is undocumented, unsupported, and may well break in the future. – CommonsWare Sep 18 '11 at 12:28
I think it's best to wrap that code in a try catch – Marco Matarazzi Sep 4 '12 at 13:30
1  
Targeting API 17 I'm getting a android.content.ActivityNotFoundException: Unable to find explicit activity class {com.google.android.gm/com.google.android.gm.ConversationListActivity}; have you declared this activity in your AndroidManifest.xml? Any ideas? – Garret Wilson Nov 16 '12 at 21:59
show 2 more comments

This works to intent just the gmail app.

Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.setClassName("com.google.android.gm", "com.google.android.gm.ComposeActivityGmail");
sendIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { "abc@gmail.com" });
sendIntent.setData(Uri.parse("abc@gmail.com"));
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "enter subject");
sendIntent.setType("plain/text");
sendIntent.putExtra(Intent.EXTRA_TEXT, "Insert text");
startActivity(sendIntent);

use for plenty of emails: sendIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { "abc@gmail.com" }); for single emails: sendIntent.setData(Uri.parse("abc@gmail.com"));

You may add extra "putExtra(Intent.EXTRA..)" and change the "setType" for your purpose. :P

share|improve this answer
3  
Why is there a minus 1? This code works... – Jared Burrows Oct 2 '11 at 3:49
1  
works nicely! also sendIntent.setData(Uri.parse("abc@gmail.com")); seems to be needless. – Aleksey Malevaniy Dec 26 '11 at 16:50
Does anyone know why it has to be new String[] { "abc@gmail.com" } instead of just "abc@gmail.com" for the 2nd parameter? – advocate Jul 7 '12 at 6:03
It is a String array, it allows for multiple emails to be added. – Jared Burrows Jul 7 '12 at 6:20

Later the requirements changed to starting an "Email app", so the below code basically starts an email app and the user has to choose among the choices shown up.

So, I had to use

                Intent intent = new Intent(Intent.ACTION_SEND);
                intent.setType("plain/text");
                intent.putExtra(Intent.EXTRA_SUBJECT, "Emailing link");
                intent.putExtra(Intent.EXTRA_TEXT, "Link is \n" +
                        "This is the body of hte message");
                startActivity(Intent.createChooser(intent, ""));
share|improve this answer
If you see clearly what droid_fan has answered then it launches email app only on particular devices but my answer launches the email app no matter what the platform is. – Sana Sep 18 '11 at 1:29
+1 for the alternative. Having looked again perhaps Richard Lalancette's answer provides a more generic solution for launching packages with unknown launch intent details. – Merlin Sep 18 '11 at 2:03

I tried so many things today, I was getting frustrated ahaha. I just wanted to launch the email client... this is what solved it for me:

Intent intent = getPackageManager().getLaunchIntentForPackage("com.google.android.gm");
startActivity(intent);
share|improve this answer

There is no documented and supported Intent for launching Gmail -- sorry!

share|improve this answer

This trick work for ALL version (API 3+), as well as text/plain or text/html (by sonida) :

Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.setType("text/html");
// intent.setType("text/plain");
final PackageManager pm = getPackageManager();
final List<ResolveInfo> matches = pm.queryIntentActivities(intent, 0);
ResolveInfo best = null;
for (final ResolveInfo info : matches) {
    if (info.activityInfo.packageName.endsWith(".gm") || info.activityInfo.name.toLowerCase().contains("gmail")) {
        best = info;
        break;
    }
}
if (best != null) {
    intent.setClassName(best.activityInfo.packageName, best.activityInfo.name);
}
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "YOUR SUBJECT");
intent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml("YOUR EXTRAS"));

startActivity(intent);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.