这是我的代码:
@H_404_13@final Intent emailintent = new Intent(androID.content.Intent.ACTION_SEND);Uri urifileToShare = Uri.fromfile(file);emailintent.setType("plain/text");emailintent.putExtra(androID.content.Intent.EXTRA_SUBJECT,file.getname());emailintent.putExtra(androID.content.Intent.EXTRA_STREAM,urifileToShare);this.startActivityForResult(Intent.createChooser(emailintent,activity.getString(R.string.send)+" "+file.getname()+" "+activity.getString(R.string.by_email)),code);我尝试了不同的解决方案但没有结果.
该文件当然存在且不为空.正如我所说,在Gmail上正确附加.
任何的想法?
解决方法 此代码对Outlook文件附件有用. @H_404_13@public static voID emailLog(Context context) { Intent emailintent = new Intent(androID.content.Intent.ACTION_SEND); emailintent.setType("text/HTML"); String filePath = fileDir + "/" + filename; emailintent.putExtra(Intent.EXTRA_EMAIL,new String[]{""}); emailintent.putExtra(Intent.EXTRA_SUBJECT,"Subject"); file recordingfile = new file(filePath); Uri fileUri = Uri.fromfile(recordingfile); emailintent.putExtra(Intent.EXTRA_STREAM,fileUri); context.startActivity(Intent.createChooser(emailintent,"Some text..."));} 总结以上是内存溢出为你收集整理的在Android中发送带附件的电子邮件.适用于Gmail但不适用于Outlook全部内容,希望文章能够帮你解决在Android中发送带附件的电子邮件.适用于Gmail但不适用于Outlook所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)