我在andorid中使用邮件编辑器并尝试使用intent发送html数据:
String body = "<html>" +
"<head>" +
"</head>" +
"<body> " +
"<img src = \"http://www.html-5-tutorial.com/images/atitlan.jpg\" >" +
"</body> " +
"</html> ";
final Intent shareIntent2 = new Intent(Intent.ACTION_SENDTO, Uri.parse("mailto:"));
shareIntent2.putExtra(Intent.EXTRA_SUBJECT, "The Subject");
shareIntent2.putExtra(
Intent.EXTRA_TEXT,
Html.fromHtml(body)
);
startActivity(shareIntent2);
但是,Image不会显示在邮件正文中。
可能是什么问题?