I am using the amazing UrlImageViewHelper library from koush https://github.com/koush/UrlImageViewHelper
The problem that I am currently facing is that the helper only notify when an iMage is succesfully loaded, according to the callback documentation:
callback An instance of UrlImageViewCallback that is called when the image successfully finishes loading. This value can be null.
UrlImageViewCallback myCallback = new UrlImageViewCallback() {
@Override
public void onLoaded(ImageView imageView, Drawable loadedDrawable,
String url, boolean loadedFromCache) {
I just wanted to know how it would be possible to be notified when an ImageView is not loaded. (server didn't answer, or wrong url)
Thank a lot for any help.