如何使用电子邮件中附带的附件启动Android的电子邮件活动?

yin*_*lcs 4 android

在我的机器人中,如何在附加附件的情况下启动android的撰写电子邮件活动?

Cri*_*ian 9

只需使用以下结构启动intent:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/html");
intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"to@example.com"});
intent.putExtra(Intent.EXTRA_SUBJECT, "the subject");
intent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml("the content"));
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/file.ext"));
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)

请注意,我正在使用文件的完整路径:"file:///sdcard/file.ext".此外,请考虑您只能将已保存的文件共享到SDCard中(否则,电子邮件客户端将忽略该文件).