I am wondering how I should implement a ListAdapter that loads its views asynchronously into a ListView? I want to do this because I am populating
ListAdapter
ListView
The easiest thing is to use an AsyncTask to do the loading and call publishProgress as each item is loaded (or, if you want to load all items and have them appear all at once, update the UI in onPostExecute
publishProgress
onPostExecute