In my Android Application Development for Dummies book, I cover working with list views. The example I provided works excellent and you can follow along in the book to implement the given example. This post is about how you can improve the performance of the ListView and its items.
When rendering a list view in the book, I override the getView method on the ListActivity. At that point I inflate the view from the resources. The code snippet looks like this:
view = mInflater.inflate(R.layout.row, parent, false);
This happens each time a view is created on the list view. Unforatunately, this...
Read more...