如何通过邮件发送超链接。
Intent i = ShareCompat.IntentBuilder.from(getActivity())
.setText(PageContants.MAIL_CONTENT1+Html.fromHtml("<a href=\"" + pdfLink+"\"> here </a>")+PageContants.MAIL_CONTENT2).setSubject(PageContants.MAIL_SUBJECT)
.setType("message/rfc822").getIntent().setAction(Intent.ACTION_SEND);
startActivity(i);
任何帮助将不胜感激。
答案 0 :(得分:0)
并非所有电子邮件提示都支持所有html标记。 Android Gmail客户端至少不支持它。它仅适用于基本标签,例如,等。它不适用于特别<img>
,<href>
等标签。
参考,
https://stackoverflow.com/a/7787568/1665507
Android, How to send HTML email and force Android to send it through G-Mail not other applications?