I want to lazy load thumbnails of images that i receive via bluetooth in to a ListView . I saw many implementation of LazyLoading in android, but i just could not understand the flow how the lazy loader was working.
Btw I referred to this site
In the above implementation they use both Memory cache as well as File cache (In the class ImageLoader). I can't get why is it necessary to maintain two cache?
And in the same class he maintains a Map imageViews. Why would he need a mapping of imageViews and Image url? .
Can anyone explain the flow of the above code or give some tips on designing my own lazyloader class.
Thanks in advance