@user2109242
我建议您使用以下代码,因为它会帮助您选择以下来源之一:电子邮件、gmail 或 skype以及电子邮件的状态,例如:已发送或未发送
public void sendFeedbackMessage(String subject, String message) {
Intent i = new Intent(Intent.ACTION_SEND);
i.putExtra(Intent.EXTRA_EMAIL , new String[]{"your@gmail.com"});
i.putExtra(Intent.EXTRA_SUBJECT, subject);
i.setType("message/rfc822");
i.putExtra(Intent.EXTRA_TEXT, message);
try {
startActivity(Intent.createChooser(i, "Send email via :"));
Toast.makeText(ReservationActivity.this, "Email Sent.", Toast.LENGTH_SHORT).show();
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(ReservationActivity.this, "There are no email applications installed.", Toast.LENGTH_SHORT).show();
}
}