我正在尝试使用iOS应用,当我选择发送电子邮件时,地址被隐藏了,而是显示了一个字(名称)。
我正在尝试在Android中做同样的事情,直到现在都没有结果。
有可能吗?
答案 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>
希望这有帮助!