按照老师的代码,拍摄的照片并没有显示在imageView上
try{
fis=new FileInputStream(mFilePath);
Bitmap bitmap=BitmapFactory.decodeStream(fis);
mImageView.setImageBitmap(bitmap);
} catch(FileNotFoundException e){
e.printStackTrace();
}
try{
fis=new FileInputStream(mFilePath);
Bitmap bitmap=BitmapFactory.decodeStream(fis);
mImageView.setImageBitmap(bitmap);
} catch(FileNotFoundException e){
e.printStackTrace();
}
2017-06-07
举报