Reputation: 3971
i find two different lessons of creatinf custom listview in android/ One of them uses ArrayAdapter the other one BaseAdapter/ Can someone explain what the differents between them and advise some simple lesson for dummies on creating custom listview/ thanks
Upvotes: 1
Views: 864
Reputation: 2169
These are some of the tutorials i referred while creating my own list view..Hope these helps you too
http://www.androidpeople.com/listview
http://www.heikkitoivonen.net/blog/2009/02/15/multicolumn-listview-in-android/
Upvotes: 2
Reputation:
http://developer.android.com/reference/android/widget/BaseAdapter.html http://developer.android.com/reference/android/widget/ArrayAdapter.html
Lazy load of images in ListView
Good practice is view recycling.
Upvotes: 3