Android Intent设置类型setType();

来源:互联网 发布:淘宝钻石展位收费模式 编辑:程序博客网 时间:2024/06/15 06:04

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

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

一.调用手机默认分享

[java] view plain copy
 print?
  1. Intent it = new Intent(Intent.ACTION_SEND);</strong></span>  
  2. it.putExtra(Intent.EXTRA_TEXT, "分享测试");  
  3. it.setType("text/plain");  
  4. startActivity(Intent.createChooser(it, "分享内容到"));</strong></span>  

二.读取相册图片

[java] view plain copy
 print?
  1. Intent it = new Intent(Intent.ACTION_GET_CONTENT);  
  2. it.setType("image/*");  
  3. startActivity(it);</span></strong>  

转载于http://blog.csdn.net/a_ycmbc/article/details/51381492
0 0
原创粉丝点击