如何为Android电子邮件附件设置mime类型

Gen*_*ent 8 email android attachment mime-types

我正在通过Intent发送电子邮件.有时他们需要有附件,但附件获得与主电子邮件相同的MIME类型(message/rf822).

Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_EMAIL, new String[] { address });
intent.putExtra(Intent.EXTRA_TEXT, body);
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
if (fileName != null) {
    intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + fileName));
}
intent.setType("message/rfc822");
Run Code Online (Sandbox Code Playgroud)

有没有办法为附件指定MIME类型?