Recycler image

What is Recycler view in Android?

The RecyclerView class extends the ViewGroup class and implements ScrollingView interface. It is introduced in Marshmallow.

It is an advanced version of the ListView with improved performance and other benefits. RecyclerView is mostly used to design the user interface with the fine-grain control over the lists and grids of android application.

In this tutorial, we will create a list of items with ImageView (for the icon) and TextView (for description) using RecyclerView and performs click listener on the item of its list.