How to preload image for Volleyball NetworkImageView?

I dynamically generate NetworkImageViewfor an internet image and it starts to extract the real file when creating the view.

Is there a way to get the Volley library to cache files of some URL before I actually create the view? Or do I need to use ImageRequestand process cached files myself?

Thanks!

+4
source share
1 answer

I think you are using ImageLoader, where you can put the string url, and I want to believe that it caches it, but there is also a bitmap listener (so you know when this will be done), so I'm not sure if this can be done just add to the network call to your server

0
source

All Articles