如何在电子邮件正文中显示图像?
2022-09-01 21:19:15
注意:我不想将图片附加到电子邮件
我想在电子邮件正文中显示图像,
我尝试过HTML图像标签,我得到了输出,正如你所看到的,我的问题 如何在电子邮件正文中添加图像,所以我累了。<img src=\"http://url/to/the/image.jpg\">"
Html.ImageGetter
它不适合我,它也给了我相同的输出,所以我怀疑是否有可能做到这一点,
我的代码
Intent i = new Intent(Intent.ACTION_SEND);
i.putExtra(Intent.EXTRA_EMAIL,new String[] {"abc@gmail.com"});
i.putExtra(Intent.EXTRA_TEXT,
Html.fromHtml("Hi <img src='http://url/to/the/image.jpg'>",
imgGetter,
null));
i.setType("image/png");
startActivity(Intent.createChooser(i,"Email:"));
private ImageGetter imgGetter = new ImageGetter() {
public Drawable getDrawable(String source) {
Drawable drawable = null;
try {
drawable = getResources().getDrawable(R.drawable.icon);
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(),
drawable.getIntrinsicHeight());
} catch (Exception e) {
e.printStackTrace();
Log.d("Exception thrown",e.getMessage());
}
return drawable;
}
};
更新 1:如果我使用代码,我能够获得文本和图像,但我无法在电子邮件正文中看到图像ImageGetter
TextView
这是我的代码:
TextView t = null;
t = (TextView)findViewById(R.id.textviewdemo);
t.setText(Html.fromHtml("Hi <img src='http://url/to/the/image.jpg'>",
imgGetter,
null));
更新 2:我使用了粗体标签和锚点标签,因为我在下面显示这些标签工作正常,但是当我使用img标签时,我可以看到一个方形框,上面写着OBJ
i.putExtra(Intent.EXTRA_TEXT,Html.fromHtml("<b>Hi</b><a href='http://www.google.com/'>Link</a> <img src='http://url/to/the/image.jpg'>",
imgGetter,
null));