显示姓名联系人而不是电子邮件意图中

时间:2014-03-18 01:44:54

标签: android android-intent

我正在尝试使用iOS应用,当我选择发送电子邮件时,地址被隐藏了,而是显示了一个字(名称)。

我正在尝试在Android中做同样的事情,直到现在都没有结果。

有可能吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

试试这个:

Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"Name Here <test@email.com>"});
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "");
intent.putExtra(android.content.Intent.EXTRA_TEXT, "");
startActivity(intent);

请注意电子邮件地址的格式:Name Here <test@email.com>

希望这有帮助!