using recycler view in item of another recycler view with itemtouchhelper

Viewed 88

I want to use horizontal recycler view in the item of vertical recycler view but it uses ItemTouchHelper and when I trying to scroll child recycler view, parent item starting swiping instead of scrolling horizontal recycler view

how can I fix that?

1 Answers

Disable swiping for parent recyclerview by not attaching an Itemtouchhelper.

Related