标签:
Intent email = new Intent(android.content.Intent.ACTION_SEND); email.setType("plain/text"); String[] emailReciver = new String[] { "earshore@gmail.com" }; String emailSubject = "BrewClock Feedback"; String emailBody = ""; // 设置邮件默认地址 email.putExtra(android.content.Intent.EXTRA_EMAIL, emailReciver); // 设置邮件默认标题 email.putExtra(android.content.Intent.EXTRA_SUBJECT, emailSubject); // 设置要默认发送的内容 email.putExtra(android.content.Intent.EXTRA_TEXT, emailBody); // 调用系统的邮件系统 startActivity(Intent.createChooser(email, "Please choose an app to email."));
标签:
原文地址:http://www.cnblogs.com/earshore/p/4180757.html