
Provides all the functionality for your list items. On this design, extend the ViewHolder class. You'll be able to use one of the RecyclerView library's standard layout managers.ĭesign how each element in the list is going to look and behave. They'll be discussed in detail in the following sections.įirst of all, decide what the list or grid is going to look like. If you're going to use RecyclerView, there are a few things you need to do. You can see how all the pieces fit together in the RecyclerView sample app Layout managers are all based on the library's Use one of the layout managers provided by the RecyclerView library, or you canĭefine your own. The layout manager arranges the individual elements in your list. The RecyclerView requests those views, and binds the views to their data,īy calling methods in the adapter. The view holder is created, the RecyclerView binds it to its data. The view holder is created, it doesn't have any data associated with it. Into your layout the way you would add any other UI element.Įach individual element in the list is defined by a view holder object. It's a view itself, so you add RecyclerView Several different classes work together to build your dynamic list.Ĭorresponding to your data. In this page, RecyclerView in code font always means the class Note: Besides being the name of the class, RecyclerView is also the name of Reuse vastly improves performance, improving your app's responsiveness and RecyclerView reuses the view for new items that have scrolled onscreen.

Item scrolls off the screen, RecyclerView doesn't destroy its view. The data and define how each item looks, and the RecyclerView libraryĭynamically creates the elements when they're needed.Īs the name implies, RecyclerView recycles those individual elements. RecyclerView makes it easy to efficiently display large sets of data.
