且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何打开Gmail撰写点击在Android应用程序按钮时?

更新时间:2023-10-14 07:57:22

我不知道,你可以专门推出的Gmail。你有没有在你的onClickListener试过这种

I don't know that you can specifically launch gmail. Have you tried this in your onClickListener

Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setType("text/plain");
startActivity(emailIntent);  

您可以在这里找到更多的细节:电子邮件的android意图

You can find more details here: Email android intent