From android developer (Creating Lists and Cards):
<The RecyclerView widget is a more advanced and flexible version of ListView.
The
RecyclerView
is a new ViewGroup that is prepared to render any adapter-based view in a similar way. It is supossed to be the successor ofListView and GridView
, and it can be found in thelatest support-v7 version
. TheRecyclerView
has been developed with extensibility in mind, so it is possible to create any kind of layout you can think of, but not without a little pain-in-the-ass dose.
Answer taken from Antonio leiva
compile 'com.android.support:recyclerview-v7:27.0.0'
RecyclerView
is indeed a powerful view
than ListView
.
For more details you can visit This page.