【发布时间】:2015-01-08 00:35:45
【问题描述】:
我正在使用 email intent 在 Android 应用程序上启动电子邮件应用程序,但我想知道如何将添加 attachment 选项包含在此意图中。
我的问题,是否可以使用此意图添加附件?
这是我用来启动电子邮件的代码,意图如下:
Toast.makeText(this, "email clicked", Toast.LENGTH_SHORT).show();
Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
"mailto","abc@gmail.com", null));
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "EXTRA_SUBJECT");
startActivity(Intent.createChooser(emailIntent, "Send email..."));
这是目前电子邮件意图的外观,但没有添加附件的选项:
【问题讨论】:
标签: android email android-intent attachment