Sathyan
Sathyan

Reputation: 168

How to stop scrolling of Recyclerview inside the Scrollview?

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

Answers (1)

P.Juni
P.Juni

Reputation: 2485

Add android:nestedScrollingEnabled="false" attribute in your RecyclerView.

Upvotes: 1

Related Questions