Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
/mnt/sdcard/img.jpg から ImageView に画像を読み込もうとしています。
Bitmap bm = BitmapFactory.decodeFile("/mnt/sdcard/img.jpg"); imageView1.setImageBitmap(bm);
外部ストレージへの書き込み権限があります。
しかし、ImageView は空で、LogCat ではエラーが発生しません。
どうすれば修正できますか?
試す
File file = new File("/mnt/sdcard/img.jpg"); Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath()); imageview1.setImageBitmap(bitmap);