-1

我想要带有图像的电子邮件,该图像来自 android 中的可删除图像我在下面显示给定链接,但出现同样的问题: 如何在电子邮件正文中添加图像

如果我把

email.putExtra(Intent.EXTRA_TEXT,Html.fromHtml("<b>content</b>"+"<img src=\"data:"+getResources().getDrawable(R.drawable.smile)+";base64,#IMAGEDATA#\"‌​&gt;")

并保存它给出错误:

Save Could not be completed
some character can not be mapped using "Cp1252" Character encodding.

请给我解决方案,我想通过邮件发送图像。

4

1 回答 1

-1

试试这个它真的会帮助你:

mail.putExtra(Intent.EXTRA_SUBJECT,  subject.toString()); 
mail.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:"+ file));
于 2012-07-19T12:49:31.807 回答