Dan wrote: > I've got a custom listview in my application that loads up images from > the web as part of each row element. Once the list view is loaded up > scrolling up and down through the list is pretty slow because as it > gets to a new row the getview is called on the listview for the row > and a new image has to be loaded from the web. So I am wondering if > there is a way to cache all the images of a specific search and load > them up when the listview loads so that the scrolling is smoother and > doesn't have to load images with every movement? Thanks for any help
You can try my ThumbnailAdapter and ThumbnailActivity: http://github.com/commonsguy/cwac-thumbnail The implementation is extremely clunky and needs a rewrite, but it works. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training in NYC: 10-11 April 2010: http://guruloft.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

