Android Intent设置类型setType();

来源:互联网 发布:淘宝 软件 编辑:程序博客网 时间:2024/06/07 20:39

android Intent大家都很熟悉了,是连接各大组件的桥梁,调用意图发送短信,彩信,打开指定网页,打开照相机,读取相册图片等等...

这里介绍两个平时用的比较多的两种意图:

一.调用手机默认分享

Intent it = new Intent(Intent.ACTION_SEND);</strong></span>it.putExtra(Intent.EXTRA_TEXT, "分享测试");it.setType("text/plain");startActivity(Intent.createChooser(it, "分享内容到"));</strong></span>

二.读取相册图片

Intent it = new Intent(Intent.ACTION_GET_CONTENT);it.setType("image/*");startActivity(it);</span></strong>


1 0
原创粉丝点击