我想在Android中的电子邮件正文中添加图片。
我使用INTENT.EXTRA_STREAM附加了图像,但这不是我想要的。我希望它在电子邮件正文中 我尝试了下面的代码,但它不起作用,有人能给我另一种方法来实现这个任务吗?
String html="<p>This is a html-formatted string with <b>bold</b> and <i>italic</i> text</p><img src=\"screenshot.jpg\"";
i.putExtra(Intent.EXTRA_TEXT,Html.fromHtml(html,
new ImageGetter() {
public Drawable getDrawable(String source) {
// TODO Auto-generated method stub
String base = Environment.getExternalStorageDirectory().getAbsolutePath().toString();
String imagePath = "/sdcard/screenshot.jpg";//"file://"+ base+"/"+ source;
Drawable bmp = Drawable.createFromPath(imagePath);
// bmp.setBounds(0, 0, bmp.getIntrinsicWidth(), bmp.getIntrinsicHeight());
return bmp;
}
},null));