我正在尝试将文本文件附加到电子邮件中,但遇到了一个奇怪的错误,希望有人能帮助我。当用户从选择器中选择 gmail 应用程序时,它工作正常,但如果他们选择内置邮件应用程序,他们会看到一个显示“无法附加文件”的 toast。
代码如下所示:
public static void sendMail(Context context, String emailBody, String emailSubject, String emailAddress, String attachmentFilename){
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
emailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { emailAddress});
emailIntent.putExtra(Intent.EXTRA_SUBJECT, emailSubject);
emailIntent.putExtra(Intent.EXTRA_TEXT, emailBody);
if(attachmentFilename != null) {
//Add the attachment by specifying a reference to our custom ContentProvider and the specific file of interest
emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("content://" + Settings.VYPR_LOG_PROVIDER_AUTHORITY + "/" + attachmentFilename));
}
context.startActivity(emailIntent);
}
有人对这里可能发生的事情有任何想法吗?我在这里看到的大部分内容都与 SD 卡上的附件有关。实际上我自己并没有编写此代码,但似乎这不是问题所在,因为如果用户选择 gmail 应用程序而不是内置应用程序,它确实可以工作。
提前致谢!