Toolbar will not collapse with Scrollview as child of CoordinatorLayout

后端 未结 5 1317
南笙
南笙 2020-12-23 18:52

I am trying to follow the Google Docs on using the CoordinatorLayout but i am having an issue with the ScrollView inside the CoordinatorLayout. Basically, the Toolbar normal

5条回答
  •  天命终不由人
    2020-12-23 19:28

    The actual answer should be that CoordinatorLayout doesn't work with ScrollView, because ScrollView is not implementing NestedScrollingChild interface. NestedScrollView is a ScrollView with NestedScrollingChild implementation. If you want to learn more about nested scrolling I made a blog post about it.

提交回复
热议问题