我知道这个问题已经在堆栈溢出中提出,我环顾四周但没有得到任何线索。实际上,我已经编写了将图像文件作为邮件附件发送的代码,并且工作正常。我用于将图像文件作为附件发送的代码如下所示。谁能告诉我在邮件正文中发送图像文件需要做哪些更改?任何线索都会有所帮助。
将图像作为附件发送的代码
Uri imageUri = Uri.parse("content://" + CachedFileProvider.AUTHORITY + "/" + fileNameArray.get(position));
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.setType("image/png");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.putExtra(Intent.EXTRA_STREAM, imageUri);
startActivity(Intent.createChooser(i, "Send email"));