Skip to main content
2 of 2
Spelling, Grammar, Formatting
Idrizi.A
  • 12.3k
  • 16
  • 52
  • 92

As per Android documentation android:nestedScrollingEnabled="false" works, but only on Android API level >= 21.

If you want to support devices below API 21 as well, use the following:

ViewCompat.setNestedScrollingEnabled(recyclerView, false); 
TejaDroid
  • 6.8k
  • 4
  • 33
  • 38