Android: RecyclerView

2020-02-26

About

A short description of RecyclerView.

Components

In order to use RecyclerView you need to setup following pieces:

Now we implement our logic

Transform model to android

Next we need a way to take the data from data source and format it to RecyclerView's format The transformation is done with Adapters.

Adapter is a design pattern that adapts the data into something that understands RecyclerView

Examples