I tried to get Bitmap attached to an ImageView, using ImageView.getDrawingCache(); But I found that the returned Bitmap was not the same as I\'d like to get from th
ImageView.getDrawingCache();
Easiest way is to set tag in ImageView.
ImageView
imageView.setImageBitmap(bitmap); imageView.setTag(bitmap);
To get Tag from it
imageView.getTag();