View on GitHub

reading-notes

RecyclerView

RecyclerView for displaying lists of data:

As the name implies, RecyclerView recycles those individual elements. When an item scrolls off the screen, RecyclerView doesn’t destroy its view. Instead, RecyclerView reuses the view for new items that have scrolled onscreen. This reuse vastly improves performance, improving your app’s responsiveness and reducing power consumption.

Key classes

Several different classes work together to build your dynamic list.

Steps for implementing your RecyclerView

resources:

https://developer.android.com/guide/topics/ui/layout/recyclerview#java