Enter RecyclerView

RecyclerView, on its own, does very little other than help manage view recycling (e.g., row recycling of a vertical list). It delegates almost everything else to other classes, such as:

Through “adapter” and “view-holder” classes, we teach RecyclerView what should go into the list rows, grid cells, or whatever. RecyclerView then handles the scrolling and recycling for us.


Prev Table of Contents Next

This book is licensed under the Creative Commons Attribution-ShareAlike 4.0 International license.