2020-02-26
A short description of RecyclerView.
In order to use RecyclerView you need to setup following pieces:
RecyclerView's format. Check also code comment.RecyclerView interacts with ViewHolderDatasource: as the name suggests the data providerProgrammingLang: our entityNext 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