ImageView读取本地路径图片
方法一、
imageview.setImageURI(Uri.fromFile(new File(这里填路径字符串)));
方法二、
Bitmap bitmap = BitmapFactory.decodeStream(getContentResolver()
.openInputStream(imgeUri));
imageview.setImageBitmap(bitmap);
转载于//www.cnblogs.com/bug01/p/11186648.html
还没有评论,来说两句吧...