码迷,mamicode.com
首页 > 移动开发 > 详细

android 调用系统图库查看指定路径的图片

时间:2015-03-30 15:50:57      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:

//使用Intent
Intent intent = new Intent(Intent.ACTION_VIEW);
//Uri mUri = Uri.parse("file://" + picFile.getPath());Android3.0以后最好不要通过该方法,存在一些小Bug
intent.setDataAndType(Uri.fromFile(picFile), "image/*");
startActivity(intent);

android 调用系统图库查看指定路径的图片

标签:

原文地址:http://www.cnblogs.com/cmblogs/p/4377992.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!