I use the UIL lib in my app, I get the images from my Amazon S3 server.
I\'ve overridden the BaseImageDownloader
class :
protected InputStrea
UIL doesn't retry image loading itself. If you return null then you'll got
onLoadingFailed(...)
callback. If you call displayImage(...)
for the same URL again then UIL will try to load image again.
If you want to prevent it then you should keep "bad" URLs somewhere and not call ImageLoader for these URLs, or return null in ImageDownloader fro these URLs.