2012-12-07 110 views
0

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

+0

可能重复:http://stackoverflow.com/questions/3148486/embedding-image-in-email-in-android –

+0

看到:http://stackoverflow.com/a/13564225/1405120 – ThePCWizard

回答

0

使用下面的代码

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

我想添加图像在电子邮件body.i试过但不工作 – Biginner

相关问题