4 回答
TA贡献1744条经验 获得超4个赞
// 对于任何应用程序的电子邮件
Intent email= new Intent(Intent.ACTION_SENDTO); email.setData(Uri.parse("mailto:your.email@gmail.com")); email.putExtra(Intent.EXTRA_SUBJECT, "Subject"); email.putExtra(Intent.EXTRA_TEXT, "My Email message"); startActivity(email);
TA贡献1821条经验 获得超6个赞
通过 Intent 打开 gmail
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("abc@gmail.com"));
intent.setClassName("com.google.android.gm", "com.google.android.gm.ComposeActivityGmail");
intent.putExtra(Intent.EXTRA_CC, new String[]{"xyz@gmail.com"});
intent.putExtra(Intent.EXTRA_BCC, new String[]{"pqr@gmail.com"});
intent.putExtra(Intent.EXTRA_SUBJECT, "your subject goes here...");
intent.putExtra(Intent.EXTRA_TEXT, "Your message content goes here...");
startActivity(intent);
只需在意图参数中传递EXTRA_CC&EXTRA_BCC
编辑
以下答案适用于android 11
Intent intent = new Intent(Intent.ACTION_SENDTO);
intent.setData(Uri.parse("mailto:"));
intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"abc@gmail.com"});
intent.putExtra(Intent.EXTRA_SUBJECT, "Your subject here...");
intent.putExtra(Intent.EXTRA_TEXT,"Your message here...");
startActivity(intent);
编辑 2
val selectorIntent = Intent(Intent.ACTION_SENDTO)
selectorIntent.data = Uri.parse("mailto:")
val emailIntent = Intent(Intent.ACTION_SEND)
emailIntent.putExtra(Intent.EXTRA_EMAIL, arrayOf("recipient@mail.com"))
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Subject here...")
emailIntent.putExtra(Intent.EXTRA_TEXT, "Email Body...")
emailIntent.selector = selectorIntent
activity!!.startActivity(Intent.createChooser(emailIntent, "Send email..."))
TA贡献1831条经验 获得超10个赞
// 这是用于 Gmail 应用程序的
Intent email= new Intent(Intent.ACTION_VIEW); email.setType("message/rfc822") .setData(Uri.parse("mailto:your.email@gmail.com")) .putExtra(Intent.EXTRA_EMAIL, "your.email@gmail.com") .putExtra(Intent.EXTRA_SUBJECT, "Subject") .putExtra(Intent.EXTRA_TEXT, "My Email message") .setPackage("com.google.android.gm"); startActivity(email);
TA贡献1799条经验 获得超6个赞
//这是用gmail打开的
Intent i = new Intent(Intent.ACTION_SENDTO); i.setType("text/plain"); i.setData(Uri.parse("mailto:")); i.putExtra(Intent.EXTRA_EMAIL , new String[]{"recipient@gmail.com"}); i.putExtra(Intent.EXTRA_SUBJECT, "Mail Subject"); i.putExtra(Intent.EXTRA_TEXT , "massage"); i.setPackage("com.google.android.gm"); try { startActivity(Intent.createChooser(i, "Send mail...")); } catch (android.content.ActivityNotFoundException ex) { Toast.makeText(AnotherActivity.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show(); }
添加回答
举报