So, as I understand it a ListView is very efficient because it uses the same view for each item, and only creates them as necessary, but can't be customised.
A CustomListView is more flexible allowing different views for each item, but views are created for each item, which makes it very slow for large lists.
So my question is, is there a ListView which uses a single custom view for each item, like the normal ListView, but only creates them as necessary.
I would be handling at least 1400 entries.
Both ScrollView and CustomListView are proving too slow, especially on older devices, which I have to support.
The demos for UltimateListView are very impressive, and run at a good speed even on an ancient Archos 28, but I can't find any information about the size of this library. Does anyone know?