Search Results

4
votes

How can I create icons for menu items in Android’s ListView?

What I typically do for a ListView is to implement my own Adapter by extending the handy BaseAdapter class. One of the abstract methods you'll implement will be getView() as the previous poster me …
2
votes

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 …