Estoy intentando crear un mapa de bits o dibujable a partir de la ruta del archivo existente.
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);
Sin embargo setImageBitmap()
, setImageDrawable()
no muestra una imagen de la ruta. He impreso la ruta con mText
y se ve así:/storage/sdcard0/DCIM/100LGDSC/CAM00001.jpg
¿Qué estoy haciendo mal? ¿Alguien puede ayudarme?