3

I wanted to make fast Responsive Adapter.

Which view is more efficient, ListView or RecyclerView?

Robert
  • 5,278
  • 43
  • 65
  • 115
Vatsal Harde
  • 1,538
  • 3
  • 15
  • 17
  • 1
    Have you read the documentation for both prior to asking this question? – Egor Mar 26 '15 at 10:36
  • 3
    possible duplicate of [Recycler View VS List View](http://stackoverflow.com/questions/26728651/recycler-view-vs-list-view) – CAS Mar 26 '15 at 10:37

1 Answers1

3

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.

Viktor Yakunin
  • 2,927
  • 3
  • 24
  • 39