I am using collapsingToolbarlayout with nestedscrollview and it works fine, until the collapsingToolbarlayout is completely collapse a
collapsingToolbarlayout
nestedscrollview
I think the reason is that your last items are out of the screen, because of shift, so you can try to add:
android:paddingBottom="<your toolbar height in collapsed state>"
to your NestedScrollView. In my case that helped.