I want to dynamically make a bitmap object which are loaded in an ImageView
ImageView imageView = activity.FindViewById<ImageView> (Resource.Id.imageView1);
Bitmap bitmap = imageView.getDrawable() // I am looking for something like this line
How can I extract a drawable object from imageview?