既存のファイルパスからビットマップまたはドローアブルを作成しようとしています。
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
私は何が間違っているのですか?誰でも私を助けることができますか?