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)

This unfortunately is not possible. A
RecyclerViewadapter is just a component to provide and bind views for each row. AConcatAdapteris no different, it just redirects from the individual adapters.If it did have any control over the layout managers it would really defeat the entire point of the modularity of
RecyclerView, which is what makes it so powerful in the first place.You can take a look at the source code here to find out more about how it is implemented.