📌  相关文章
📜  如何从 android 中的文件中获取位图 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:18.249000             🧑  作者: Mango

代码示例1
You should be able to use BitmapFactory:

File mSaveBit; // Your image file
String filePath = mSaveBit.getPath();  
Bitmap bitmap = BitmapFactory.decodeFile(filePath);
mImageView.setImageBitmap(bitmap);