Tôi đang cố tạo Bitmap hoặc Drawable từ đường dẫn tệp hiện có.
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);
Nhưng setImageBitmap()
, setImageDrawable()
không hiển thị hình ảnh từ đường dẫn. Tôi đã in đường dẫn với mText
và nó trông giống như:/storage/sdcard0/DCIM/100LGDSC/CAM00001.jpg
Tôi đang làm gì sai? Bất cứ ai có thể giúp tôi?