Using the factory with the RecyclerView

As we saw briefly earlier in the book, RecyclerViews make use of an internal LayoutManager. This in turn communicates with the data set by use of an adapter. These adapters serve exactly the same function as the adapter design pattern we explored earlier in the book. The function may not appear so readily apparent, but it acts as a connection between a dataset and a recycler view's layout manager. The adapter crosses this bridge with its ViewHolder. The workings of the adapter are neatly separated from the client code, and all we need are a few lines to create a new adapter and layout manager.

With this in mind and our data ready, we can quickly put an adapter together by following these simple steps:

  1. Begin ...

Get Android Design Patterns and Best Practice now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.