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); 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);