Why NestedScrollView stop scrolling when CollapsingToolbarLayout is completely collapse?

前端 未结 1 1819
半阙折子戏
半阙折子戏 2021-01-20 15:32

I am using collapsingToolbarlayout with nestedscrollview and it works fine, until the collapsingToolbarlayout is completely collapse a

相关标签:
1条回答
  • 2021-01-20 15:56

    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.

    0 讨论(0)
提交回复
热议问题