如何在Android中将图像嵌入电子邮件正文?

时间:2012-12-07 12:52:17

标签: android android-intent

我想将图像嵌入到电子邮件正文中。如何做到这一点。我发现了很多但仍然无法获得解决方案。是否可以将图像添加到电子邮件正文中?

1 个答案:

答案 0 :(得分:0)

使用以下代码

Intent attachmentIntent = new Intent(Intent.ACTION_SEND);
attachmentIntent.setType("image/*");
attachmentIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("your file address"));
startActivity(attachmentIntent);