Is there an onImageChangedListener() on a ImageView?
I need the event when the image is changed from the ImageView.
If you want to load the image from network and check change in imageview you can use imageView.isAttachedToWindow(). I have tried downloading the image from network and disabled the progressbar after image downloaded and attached to window. Use,
if(imageView.isAttachedToWindow()){
//your code here
}