What is the best way of constructing a ListView
that uses the least memory possible? This is important, because I met a few implementations and most of them is
getView()
ViewHolder
patternCursor
as underlying data instead of object list built from cursor if your data comes from database
, you save memory by not creating additional objects.