Search Results

1
vote

Android - How do I do a lazy load of images in ListView

The way I do it is by launching a thread to download the images in the background and hand it a callback for each list item. When an image is finished downloading it calls the callback which updat …