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.
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.