我将html文本更改为字符串,并发送到android中的电子邮件意图。这是我的代码:
Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
"mailto",(mail_name), null));
emailIntent.putExtra(Intent.EXTRA_SUBJECT, mail_subject);
emailIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml("<img src=\\\"http://i.imgur.com/9nyKcwl.jpg\\\" width=\\\"381\\\"><br>", new ImageGetter(), null));
startActivity(Intent.createChooser(emailIntent, "Send email..."));
在电子邮件部分,我没有任何图像。
答案 0 :(得分:0)
\\\"
转义了反斜杠,并且"
到\"
似乎并不正确。使用"<img src=\"http://i.imgur.com/9nyKcwl.jpg\" width=\"381\"><br>"