タグ付けされた質問 「bitmapfactory」

6
ファイルパスからビットマップ/ドローアブルを作成する
既存のファイルパスからビットマップまたはドローアブルを作成しようとしています。 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 私は何が間違っているのですか?誰でも私を助けることができますか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.