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();
If you just want the Bitmap from a ImageView the following code may work for you:-
Bitmap
ImageView
Bitmap bm=((BitmapDrawable)imageView.getDrawable()).getBitmap();
I think that's what you wanted.