众所周知,在Android中调用其他程序进行相关处理,都是使用的Intent。当然,Email也不例外。
在Android中,调用Email有三种类型的Intent:
Intent.ACTION_SENDTO 无附件的发送
Intent.ACTION_SEND 带附件的发送
Intent.ACTION_SEND_MULTIPLE 带有多附件的发送
当然,所谓的调用Email,只是说Email可以接收Intent并做这些事情,可能也有其他的应用程序实现了相关功能,所以在执行的时候,会出现选择框进行选择。
1.使用SENTTO发送
- Intent data=new Intent(Intent.ACTION_SENDTO);
- data.setData(Uri.parse("mailto:[email protected]"));
- data.putExtra(Intent.EXTRA_SUBJECT, "这是标题");
- data.putExtra(Intent.EXTRA_TEXT, "这是内容");
- startActivity(data);
通过向Intent中putExtra来设定邮件的相关参数。
2.使用SEND发送
- Intent intent = new Intent(Intent.ACTION_SEND);
- String[] tos = { "[email protected]" };
- String[] ccs = { "[email protected]" };
- String[] bccs = {"[email protected]"};
- intent.putExtra(Intent.EXTRA_EMAIL, tos);
- intent.putExtra(Intent.EXTRA_CC, ccs);
- intent.putExtra(Intent.EXTRA_BCC, bccs);
- intent.putExtra(Intent.EXTRA_TEXT, "body");
- intent.putExtra(Intent.EXTRA_SUBJECT, "subject");
-
- intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/Chrysanthemum.jpg"));
- intent.setType("image/*");
- intent.setType("message/rfc882");
- Intent.createChooser(intent, "Choose Email Client");
- startActivity(intent);
很简单,发送邮件中,有收件者,抄送者,密送者。 也就是分别通过
Intent.EXTRA_EMAIL,
Intent.EXTRA_CC,
Intent.EXTRA_BCC
来进行putExtra来设定的。
而单个附件的发送,则使用Intent.EXTRA_STREAM来设置附件的地址Uri。
3.使用SEND_MULTIPLE来进行多附件的发送
- Intent intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
- String[] tos = { "[email protected]" };
- String[] ccs = { "[email protected]" };
- intent.putExtra(Intent.EXTRA_EMAIL, tos);
- intent.putExtra(Intent.EXTRA_CC, ccs);
- intent.putExtra(Intent.EXTRA_TEXT, "body");
- intent.putExtra(Intent.EXTRA_SUBJECT, "subject");
-
- ArrayList<Uri> imageUris = new ArrayList<Uri>();
- imageUris.add(Uri.parse("file:///sdcard/Chrysanthemum.jpg"));
- imageUris.add(Uri.parse("file:///sdcard/Desert.jpg"));
- intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);
- intent.setType("image/*");
- intent.setType("message/rfc882");
- Intent.createChooser(intent, "Choose Email Client");
- startActivity(intent);
发送多个附件,最主要的时候,通过putParcelableArrayListExtra将多个附件的Uri地址List设置进去就OK了。其实还是很简单的。
如下是在三星galaxy tab 2 10.1上面的运行效果:
对于使用邮件发送,在很多的Android应用中都会使用到,跟微博分享一样的常见。大家也只需要稍微了解下就可以了,毕竟还是很容易的。
转载请注明出处:http://blog.csdn.net/ml3947/
---------------------------------
最近公司平板上面的一个项目,要使用Email把日志导出的多页图片进行发送,也有其他的微博分享之类的功能。所以就稍微看了下调用Email发送多附件的,顺带着整理了下,写了这篇博客。
这周末本来打算和同事出去玩的,但貌似要下两天雨,如果真的是这样的话,我也会继续进行写JavaFX的相关博文。