Nestedscrollview And Recyclerview Issues, How To Separate Them?
I'm not sure how to implement this.. I want to use: Collapsing Toolbar 'normal' Layout (NestedScrollView) RecyclerView and navigate by the NavigationDrawer (so the layouts come t
Solution 1:
Best way to achieve this is to use only a RecyclerView
with an adapter handling different view types.
For the first adapter position, the list item will be your fixed content once in NestedScrollView
, and for other positions what you want to use is the RecyclerView
items from your current solution.
Post a Comment for "Nestedscrollview And Recyclerview Issues, How To Separate Them?"