Android:ACTION_SEND_MULTIPLE与com.android.email

Android:ACTION_SEND_MULTIPLE与com.android.email,第1张

概述我正在尝试将Intent中的多个附件发送到电子邮件应用(而不是Gmail应用).我正在使用:IntentemailIntent=newIntent(android.content.Intent.ACTION_SEND_MULTIPLE);emailIntent.setType("plainext");emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,newString[]

我正在尝试将Intent中的多个附件发送到电子邮件应用(而不是Gmail应用).我正在使用:

Intent emailintent = new Intent(androID.content.Intent.ACTION_SEND_MulTIPLE);emailintent.setType("plain/text");emailintent.putExtra(androID.content.Intent.EXTRA_EMAIL,new String[] { "sample@email.com" });emailintent.putExtra(androID.content.Intent.EXTRA_SUBJECT,"This is an email");emailintent.putExtra(Intent.EXTRA_TEXT, "This is the body");file f1 = null;file f2 = null;try {    f1 = new file("/sdcard/test");    f2 = new file("/sdcard/test.1");    fileWriter fw1 = new fileWriter(f1);    fileWriter fw2 = new fileWriter(f2);    fw1.write("this is some text");    fw2.write("this is more text");    fw1.close();    fw2.close();} catch (IOException e) {    e.printstacktrace();}ArrayList<Uri> uris = new ArrayList<Uri>();uris.add(Uri.fromfile(f1));uris.add(Uri.fromfile(f2));emailintent.putParcelableArrayListExtra(Intent.EXTRA_STREAM,uris);startActivity(emailintent);

当Gmail用于处理Intent时,它会显示两个附件,并且一切正常.使用电子邮件应用程序时,不会添加任何附件.在EXTRA_STREAM中使用单个Uri时,单个附件可以工作,但使用ArrayList则不行.我把这个代码拼凑在这里提出的其他问题中,但没有一个能解决这个问题.有人可以帮忙吗?

解决方法:

使用

emailintent.setType(" */ * ");

没有空格

see here ACTION_SEND_MulTIPLE

总结

以上是内存溢出为你收集整理的Android:ACTION_SEND_MULTIPLE与com.android.email全部内容,希望文章能够帮你解决Android:ACTION_SEND_MULTIPLE与com.android.email所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1105056.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存