From android developer (Creating Lists and Cards):
<The RecyclerView widget is a more advanced and flexible version of ListView.
In my opinion RecyclerView
was made to address the problem with the recycle pattern used in listviews because it was making developer's life more difficult.
All the other you could handle more or less.
For instance I use the same adapter for ListView
and GridView
it doesn't matter in both views the getView
, getItemCount
, getTypeCount
is used so it's the same.
RecyclerView
isn't needed if ListView
with ListAdapter
or GridView
with grid adapters is already working for you.
If you have implemented correctly the ViewHolder
pattern in your listviews then you won't see any big improvement over RecycleView
.