J'essaie de créer un Bitmap ou un Drawable à partir d'un chemin de fichier existant.
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);
Mais setImageBitmap()
, setImageDrawable()
ne montre pas d'image à partir du chemin. J'ai imprimé le chemin avec mText
et cela ressemble à : /storage/sdcard0/DCIM/100LGDSC/CAM00001.jpg
Qu'est-ce que je fais mal ? Quelqu'un peut m'aider ?