使用CoordinatorLayout 实现顶部滚出的效果时,需要注意!!!!
1 必须配合具有滚动属性的view
2 如果这个滚动的View没有实现NestedScrollingParent 接口,诸如ScrollView ,ListView 将无法实现顶部滚出的效果,顶部的布局会一直固定在最顶端!!!!(纠结了我一下午的事情)
3 可以实现滚出效果的滚动View 有:NestedScrollView,RecyclerView
4 使用CoordinatorLayout 实现顶部滚出的效果时,需要包裹两个基本布局,一个是AppBar,一个是可以滚动并实现NestedScrollingParent 接口的view; AppBar中的子布局不限于ToolBar,TabLayout,其他布局也可以使用
----- 顶部滚出的具体代码后续再补充
参考文章:Android 优化交互 —— CoordinatorLayout 与 Behavior