从文件路径创建位图/可绘制
2022-08-31 10:59:45
我正在尝试从现有文件路径创建位图或可绘制。
String path = intent.getStringExtra("FilePath");
BitmapFactory.Options option = new BitmapFactory.Options();
option.inPreferredConfig = Bitmap.Config.ARGB_8888;
mImg.setImageBitmap(BitmapFactory.decodeFile(path));
// mImg.setImageBitmap(BitmapFactory.decodeFile(path, option));
// mImg.setImageDrawable(Drawable.createFromPath(path));
mImg.setVisibility(View.VISIBLE);
mText.setText(path);
但是,不会显示路径中的图像。我已经打印了路径,它看起来像:setImageBitmap()
setImageDrawable()
mText
/storage/sdcard0/DCIM/100LGDSC/CAM00001.jpg
我做错了什么?任何人都可以帮助我吗?