Android 以编程方式打开电子邮件客户端
当我单击应用程序中的按钮时,是否可以打开电子邮件客户端(例如 Gmail)?
Is it possible to open an emailclient such as gmail when I click a button in my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
是的。您可以通过意图启动它。
Yes. You can launch it via Intents.
最新的做法
up to date way of doing it
如果上面的代码不起作用,请尝试此操作。
已测试并工作
If above code is not working then try this.
Tested and working
这对我来说效果很好
This Worked fine for me
如果没有附件,您可以简单地使用以下代码:
有关详细信息,我建议访问:
https://developer.android.com/guide/components/intents- common.html#电子邮件
You can simply use below code when for no attachment:
For details I recommend to visit:
https://developer.android.com/guide/components/intents-common.html#Email