I wanted to make fast Responsive Adapter.
Which view is more efficient, ListView
or RecyclerView
?
I wanted to make fast Responsive Adapter.
Which view is more efficient, ListView
or RecyclerView
?
Basically It depends on your implementation. RecyclerView is the new widget that has different architecture principles. If your list is simple and wouldn't use Choice modes, Selection mode and other hard dependent things like CursorAdapter, then it is faster and better to use RecyclerView - it would have better performance. In other case it is better to use ListView - you have all things like SelectionMode out of the box.