In my monodroid application I use universal image loader to display images on a list view .
Before displaying images i show a progress bar on images.
I wanna add an default images for when the download fails.
Is it possible?
This is the code that i display image with it:
ImageLoader = Com.Nostra13.Universalimageloader.Core.ImageLoader.Instance;
ImageLoader.DisplayImage(myobject.Images [0], imageView, Application.Options, newImageLoaderListener (progressbar));
This is a monodroid code.
Thanks.
Use
ImageLoadingListener.onLoadingFailed()for that. Display your image inonLoadingFailed().