如何启用在电子邮件意图 Android 中添加附件?

How to enable adding of attachment in email intent Android?

我正在使用 email intent 在 Android 应用程序上启动电子邮件应用程序,但我想知道如何将添加 attachment 选项包含在此意图中。

我的问题是,是否可以使用此 Intent 添加附件?

这是我用来启动电子邮件的代码,目的如下:

         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..."));

这是电子邮件意图目前的样子,但没有添加附件的选项:

intent.putExtra(Intent.EXTRA_STREAM, uriForFile);