Is there any URI which can point to the GMAIL App in android and help me launch it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'm using this in my apps:
|
|||||||||||||||||||
|
|
This works to intent just the gmail app.
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 |
|||||||||||||
|
|
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
|
|||||
|
|
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:
|
|||
|
|
|
This trick work for ALL version (API 3+), as well as text/plain or text/html (by sonida) :
|
|||
|
|
