[android-developers] Lazy Loading Images in a ListView - consensus approach?

2010-02-13 Thread Carmen Delessio
Here are 4 references that I have found for lazy-loading images into a listview in Android. The idea is to display a placeholder image, get the actual image in the background, update the ImageView in the list when the image is available. I've tried to do this in the simplest way possible using an

Re: [android-developers] Lazy Loading Images in a ListView - consensus approach?

2010-02-13 Thread Romain Guy
I haven't looked in details at the 3 other approaches but I know that a big difference between what I do in Shelves and what I've seen done in other places is how user interaction is handled. Shelves listens to scroll events on the ListView and tries to identify taps vs scrolls vs fling to always

[android-developers] Lazy Loading Images in a ListView

2009-12-08 Thread Samuh
I trying a hand at ListViews and my current experiment is aimed at displaying some data in a ListView. The data to be displayed in each row is simple: an image and some text. The images come from a remote server and the textual data is hardcoded. I have a class that downloads images using