Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将图像嵌入电子邮件正文。如何做到这一点。我找到了很多但仍然无法获得解决方案。是否可以将图像添加到电子邮件正文?
使用下面的代码
Intent attachmentIntent = new Intent(Intent.ACTION_SEND); attachmentIntent.setType("image/*"); attachmentIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("your file address")); startActivity(attachmentIntent);