How can I pre-download all images to disk-cache with Android-Universal-Image-Loader? I would like to allow user to download all images at once.
Since v1.9.0 it is possible to download image synchronously:
ImageLoader.loadImageSync(...) : Bitmap
Now it's much more easier to download images in background (e.g. inside IntentService).