lazylist

What's LazyList?

走远了吗. 提交于 2019-11-26 01:15:53
问题 I can\'t find in any really credible source explaining what LazyList is. Anyone? 回答1: Lazy List is lazy loading of images from sd-card or from server using urls. It is like on demand loading images. Images can be cached to local sd-card or phone memory. Url is considered the key. If the key is present in sd-card, display images from sd-card else display image by downloading from server and cache the same to location of your choice. The cache limit can set. You can also choose your own

Caching images and displaying

江枫思渺然 提交于 2019-11-26 00:19:32
问题 Hello Am facing a particular problem in which I need to download images and display them onto a ListView corresponding to their particular TextView\'s . The code I have is successfully displaying the The TextView\'s I need to display but I don\'t know how to display all these different images next to my text views in my ListView . After going through many threads in SO. The top answers are to solve this by 1. Lazy List 2. Universal Image Loader I have gone through both the solutions. I