我想使用 android 意图发送电子邮件。除了选择电子邮件应用程序来发送电子邮件时,每件事都运行良好,在发送到字段中获取空值,虽然我检查空值但似乎我无法检测到字符串何时为空。谁能帮我解决这个问题。
if (emailAddress[0]!=null && !emailAddress[0].isEmpty()) {
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_EMAIL, emailAddress);
intent.putExtra(Intent.EXTRA_SUBJECT,
getResources().getString(R.string.email_sub));
// intent.putExtra(Intent.EXTRA_TEXT, "I'm email body.");
startActivity(Intent.createChooser(intent, "Send Email"));