上章讲了CollapsingToolbarLayout + Toolbar的简单用法,记住是简单哈,复杂需要自定义,搞不来的就用简单吧。
注意:只用要使用到上一章那种效果才用CollapsingToolbarLayout ,其它效果没必要用。
4、CoordinatorLayout+ AppBarLayout
为什么前面的布局都用到AppBarLayout而又要把它放在最后讲呢?因为它重要。CoordinatorLayout没了CollapsingToolbarLayout 没关系,但没了AppBarLayout就不行,没错,他们就是一对狗男女,一定要粘在一起才会好好做事。
现在来试试AppBarLayout的效果,普通的控件不用玩我们都知道效果了,那我们就来个骚一点的操作,我么就在AppBarLayout里面放个RecyclerView看看有多爽。
<android.support.design.widget.CoordinatorLayout android:id="@+id/main_content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_top"
android:layout_width="match_parent"
android:layout_height="300dp"
app:layout_scrollFlags="scroll">
</android.support.v7.widget.RecyclerView>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/rv_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</android.support.design.widget.CoordinatorLayout>
咳咳....开个玩笑的,这样的话,上边的RecyclerView是无法滑动的,那我们如果不限定上边的RecycleView的高度的话会怎样。
这个效果是可以的,有想法的朋友可以试试。最后你会得出一个结论:
AppBarLayout内的控件无法滑动,但是它能够获取到自适应的高度,哪怕高度超出一个屏幕
5.CoordinatorLayout+ AppBarLayout + ViewPager
这是用到的比较多的一种组合,我们先来看看布局怎么写
<android.support.design.widget.CoordinatorLayout android:id="@+id/main_content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
>
<FrameLayout
app:layout_scrollFlags="scroll"
android:layout_width="match_parent"
android:layout_height="400dp"
android:background="#cdcdcd"
></FrameLayout>
<android.support.design.widget.TabLayout
android:id="@+id/tl_tab"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#ffff"
app:tabMode="fixed"
app:tabGravity="fill"
app:tabTextColor="#0000"
app:tabSelectedTextColor="@color/colorAccent"
app:tabIndicatorColor="@color/colorAccent"
app:tabIndicatorHeight="2dp"
/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/vp_content"
android:background="#ffff"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>
</android.support.design.widget.CoordinatorLayout>
上面是一个布局,我这里就用FrameLayout代替,然后下面是一个导航栏+ViewPager。导航栏我用的是TabLayout,这里你用什么都行,自定义都行。
(1)布局需要注意的地方
首先就是TabLayout(导航栏)我们想让它滑到最上边时不折叠而是一直厅在最上边,所以这里我们没给TabLayout设置app:layout_scrollFlags属性,意味着我们不让它折叠。注意,关键的地方来了。AppBarLayout内部的组件,必须把需要折叠的放在前面,你可以把这里的TabLayout和FrameLayout换下,你就知道什么效果了。所以一定要把你想要折叠的组件放在前面。
(2)AppBarLayout外的组件需要注意
AppBarLayout外的组件记得要加上app:layout_behavior="@string/appbar_scrolling_view_behavior"属性,这个我们前面有说。
你以为这样就完啦?那你太天真了,当你切换到Tab2时(我的Tab2里面只放一个ImageView),你会发现滑Fragment而上边的FrameLayout不会折叠,为什么?
你要记住只有NestedScrolling才能滑动折叠,而RecyclerView可以是因为它本来就实现NestedScrolling接口
所以为了能实现正常的滑动折叠效果,我们需要给布局嵌套一层NestedScrolling。
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/nsv_up"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@mipmap/test"
/>
</android.support.v4.widget.NestedScrollView>
按照上面的布局我们就能正常的实现CoordinatorLayout+ AppBarLayout + ViewPager,但是还是有问题,这个我们之后的章节会再去讲。