如何在电子邮件中附加图像文件?

siv*_*raj 6 android

我想用电子邮件附加图像,该图像存储在其中/data/data/mypacke/file.png.如何以编程方式附加该图像文件?样本代码会是什么样的?

Blu*_*mer 25

使用Intent.ACTION_SEND将图像移交给另一个程序.

File F = new File("/path/to/your/file.png");
Uri U = Uri.fromFile(F);
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("image/png");
i.putExtra(Intent.EXTRA_STREAM, U);
startActivity(Intent.createChooser(i,"Email:"));
Run Code Online (Sandbox Code Playgroud)