ImageView.setImageBitmap is blank
问题 I took a picture using MediaStore and saved it. I can see the image in my Gallery. However when I try to set the image bitmap to my ImageView, it becomes blank. String abspath; public void getPicture(View view) { Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); File imageFile = new File(PATH + "/image.jpg"); abspath = imageFile.getAbsolutePath().toString(); cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(imageFile)); sendBroadcast(new Intent