读取SD卡中的图片

Touxiang=(ImageView)view.findViewById(R.id.Touxiang);   //头像
Bitmap bm = BitmapFactory.decodeFile("/sdcard/myheader/newpic.jpg"); //从本地取图片(在cdcard中获取) //
Touxiang .setImageBitmap(Util.toRoundBitmap(bm)); //设置Bitmap
原文地址:https://www.cnblogs.com/to-creat/p/5149866.html