1.首先开启读取sd卡权限:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
2.判断sd卡是否存在:
boolean sdCardExist = Environment.getExternalStorageState() .equals(android.os.Environment.MEDIA_MOUNTED);
3.获取根目录下指定文件(以图片做列子)
//获得SD卡根目录路径
sdDir =Environment.getExternalStorageDirectory();
String sdpath = sdDir.getAbsolutePath();
//获取指定图片路径
String filepath = sdpath + File.separator + "hand.jpg";
File file = new File(filepath);
//创建一个imageView对象
ImageView imageView = new ImageView(this);
if (file.exists()) {
Bitmap bm = BitmapFactory.decodeFile(filepath);
// 将图片显示到ImageView中
imageView.setImageBitmap(bm);
ll.addView(imageView);}
4.附上完整代码:
File sdDir = null;
//判断sd卡是否存在
boolean sdCardExist = Environment.getExternalStorageState() .equals(android.os.Environment.MEDIA_MOUNTED);
if(sdCardExist){
//获得SD卡根目录路径
sdDir = Environment.getExternalStorageDirectory();
String sdpath = sdDir.getAbsolutePath();
//获取指定图片路径
String filepath = sdpath + File.separator +"hand.jpg";
File file = new File(filepath);
//创建一个imageView对象
ImageView imageView = new ImageView(this);
if (file.exists()) {
Bitmap bm = BitmapFactory.decodeFile(filepath);
// 将图片显示到ImageView中
imageView.setImageBitmap(bm);
ll.addView(imageView);}
}
今天的文章android读取sd卡权限_android文件管理器[通俗易懂]分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:http://bianchenghao.cn/78036.html