Anikesh patel
Anikesh patel

Reputation: 21

child recyclerview not scrolling when i put horizontal recyclerview inside another horizontal recyclerview

I have a nested recyclerview and both have a horizontal linear layout but the child one is not scrolling All consequences 1) I'm using a snap helper in the parent recyclerview 2) also using recycler view pool in child recyclerview

Upvotes: 0

Views: 149

Answers (1)

Yashdeep Raj
Yashdeep Raj

Reputation: 1051

It is bad practice to use a Nested RecyclerView with the same LayoutManager. If horizontal scrolling is important to use for you then try RecyclerView inside ViewPager.

This will behave like this: When scrolling RecyclerView, Fragment will stick to port until RecyclerView last item is shown. After that the next fragment switchs.

Upvotes: 1

Related Questions