i need a listView implementation which has following features:
-resource saving: should hold only elements in memory which are visible +x
-should provide interface to change current element without loading everything
-should load elements from slow resources in background so that interaction is fast
Is there an example for that out there?
thanks
tata
You should consider looking at Romain Guy’s presentation (beginning) where he explains performance issues with ListView and teaches to use adapters efficiently. (ViewHolder pattern and reusing views).
The video is awesome and he explains how to reach maximum performance and avoid common mistakes in the ListView providing code examples.