I have recyclerview in the nestedscrollview:
Try disabling nested scrolling on the RecyclerView:
recyclerView.setNestedScrollingEnabled(false);
Solved my issue with errant nested scrolling. Let me know if that helps.