Reputation: 168
In my Project, I put a recyclerview inside the Scroll view. Recyclerview is working fine and scrolling well.I don't want the scrolling of recyclerview.When scroll the screen whole layout should scroll.But now only the recyclerview is scrolling.How to stop that?
Upvotes: 0
Views: 268
Reputation: 2485
Add android:nestedScrollingEnabled="false"
attribute in your RecyclerView
.
Upvotes: 1