Need to disable expand on CollapsingToolbarLayout for certain fragments

Disable nested scrolling on the scrolling fragment content:

recyclerView.setNestedScrollingEnabled(false);

Use this if you’re using the support library:

ViewCompat.setNestedScrollingEnabled(recyclerView, false);

Leave a Comment