Reputation: 435
I have a ScrollView with multiple horizontal RecyclerView. The problem is this:
When I scroll vertically to navigate into my app and I touch on a recyclerview to scroll horizontally, the focus remain on the scrollview and I can't scroll horizontally. I have to release the finger and touch again in order to scroll vertically.
I'd like to give proprity to the recyclerview, so I can scroll horizontally without stopping the vertical scroll.
I tried multiples solutions:
Thanks for your help
Upvotes: 2
Views: 1896
Reputation: 992
This problem because of recyclerView has default focus. Just Add this
android:descendantFocusability="blocksDescendants"
to your immediate layout of scrollView.
Upvotes: 5