这是我在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的编译
有任何想法吗?