Android ListView with images using Droid-Fu WebImageView and a custom list adapter
Droid-Fu library has a nice little widget called WebImageView which allows the display of an image downloaded from the Web, along with a nice little loading animation display. The widget cannot be simpler to use:
WebImageView imageView = ... imageView.setImageUrl("http://..."); imageView.loadImage(); That’s it! The widget will automatically handle the display of an indeterminate progress animation, and display the image as soon as it is downloaded.Moreover: downloaded images are cached. Awesome!
Read more...