这是我在 Android 中发送 HTML 电子邮件的代码,带有可点击的链接。
private void sendEmail()
{
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
String subject = "Prueba";
String emailtext = "<a href=http://www.google.es>PruebaEmail</a>";
emailIntent.setType("message/rfc822");
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(emailtext.toString()));
startActivity(Intent.createChooser(emailIntent, "Send mail"));
}
几个月前,它还在工作并发送一个可点击的超链接,但现在,当我在我的 GMail 帐户中收到邮件时,没有超链接,只有纯文本。
我已经尝试了所有这些类型:
emailIntent.setType("message/rfc822");
和
emailIntent.setType("plain/text");
和
emailIntent.setType("text/html");
这对于文本:
String emailtext = "<a href=http://www.google.es>PruebaEmail</a>";
和
String emailtext = "<a href='http://www.google.es'>PruebaEmail</a>";
和
String emailtext = "<a href="http://www.google.es">PruebaEmail</a>";
但这些都不起作用。
这个问题只针对 GMail,因为如果我将邮件发送到 Evernote 或其他应用程序,我会得到一个可点击的链接。
这是我的 API 配置:
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8"/>
并使用 Android 3.2 编译
有任何想法吗?