Given
ImageView image = R.findViewById(R.id.imageView); image.setImageBitmap(someBitmap);
Is it possible to retrieve the bitmap?
Bitmap bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();