0

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

4

1 回答 1

0

使用下面的代码

Intent attachmentIntent = new Intent(Intent.ACTION_SEND);
attachmentIntent.setType("image/*");
attachmentIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("your file address"));
startActivity(attachmentIntent);
于 2012-12-07T13:00:20.280 回答