我使用下面的代码发送电子邮件。我在模拟器中遇到错误,但它可以在真实设备上运行
Intent emailDeveloper = new Intent(Intent.ACTION_SEND);
emailDeveloper.setType("message/rfc822");
emailDeveloper.putExtra(Intent.EXTRA_EMAIL , new String[]{"YourEmail@email.com"});
emailDeveloper.putExtra(Intent.EXTRA_SUBJECT, "E-mail subject");
emailDeveloper.putExtra(Intent.EXTRA_TEXT , "Message text");
try
{
startActivity(Intent.createChooser(emailDeveloper, "Send e-mail..."));
}
catch (android.content.ActivityNotFoundException ex)
{
Toast.makeText(YourActivity.this, "Error finding E-mail application",
Toast.LENGTH_SHORT).show();
}