I want to implement an ConcatAdapter like this image:
This page's recyclerView contains these elements:
- Title
- Horizontal recyclerView (with pagination)
- Title
- Vertical recyclerView (no pagination)
- Title
- Horizontal recyclerView (with pagination)
But the problem is I can set only one LayoutManager to recyclerView that holds ConcatAdapter as I know.
How can set different layoutmanager to each adapter? Or any other solution to implement this page with CocantAdapter?
(Why ConcatAdapter? Because it sovle performance prblems of nestedRecyclerView even with recyclerViewPool as I know)