需要添加依赖
compile 'com.android.support:design:25.3.1'
首先先来两张图
正如图中所示:coordinatorlayout包括两大部分,一部分是appbarlayout(这一部分还可以包含CollapsingToolbarLayout,CollapsingToolbarLayout用于对Toolbar进行包装,因此,它是AppBarLayout的直接子View,同时也是Toolbar的直接父View),另一部分是实现了nestedscrollingchild接口的滚动列表(比如recycleview,nestedscrollview...)
appbarlayout下方的那个列表(比如recycleview,nestedscrollview...)中必须设置app:layout_behavior="@string/appbar_scrolling_view_behavior"
或者是app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"
需要将AppBarLayout作为CoordinatorLayout的直接子View,同时它也是一个LinearLayout,因此它的所有子View都是线性排列的,而它对子View的滚动显示管理是通过子View的app:layout_scrollFlags属性,注意,这个标志位是在AppBarLayout的子View中声明的,而不是AppBarLayout中。
app:layout_scrollFlags的值有下面五种可选:
- scroll
注意事项
- 这个标志位是其它四个标志位生效的前提
- 带有scroll标志位的子View必须放在AppBarLayout中的最前面
- exitUntilCollapsed
- enterAlways
- enterAlwaysCollapsed
- snap
这五个标志位在子view中的组合及效果有:
- app:layout_scrollFlags="scroll"
效果:
设置了scroll的子View可以在滚动后收起,而没有设置的则不可以。
在手指向上移动的时候,优先收起AppBarLayout中的可收起View,当它处于收起状态时,下面的列表内容才开始向尾部滚动。
在手指往下移动的时候,优先让下面的列表内容向顶部滚动,当列表滚动到顶端时,AppBarLayout的可收起View才展开。
- app:layout_scrollFlags="scroll|exitUntilCollapsed"
另外设置一下android:minHeight="50dp"
效果:
手指向上移动的时候,会优先收起AppBarLayout中的子View,而收起的最小高度为0,如果想收起时仍然保留部分可见,那么就需要使用exitUntilCollapsed + minHeight属性,minHeight就决定了收起时的最小高度是多少
- app:layout_scrollFlags="scroll|enterAlways"
效果:
enterAlways则决定了手指向下移动时的行为。默认情况下,在手指向下移动时,会优先让列表滚动到顶部,而如果设置了enterAlways,那么会优先让AppBarLayout中的子View滚动到展开。
- app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed"
效果:
优先滚动AppBarLayout中的子View,但是并不是滚动到全部展开,而是只滚动到minHeight
AppBarLayout中的子View滚动到minHeight之后,开始滚动列表,直到列表滚动到头部
列表滚动到头部之后,开始滚动AppBarLayout中的子View,直到它完全展开
- app:layout_scrollFlags="scroll|snap"
效果:
默认情况下,在手指从屏幕上抬起之后,AppBarLayout中子View的状态就不会变化了,而如果我们设置了snap标志位,那么在手指抬起之后,会根据子View当前的偏移量,决定是让它变为收起还是展开状态
监听AppBarLayout的滚动状态
AppBarLayout提供了监听滚动状态的接口,我们可以根据这个偏移值来改变界面的状态:
private void setAppBar() {
final TextView moveView = (TextView) findViewById(R.id.iv_move_title);
AppBarLayout appBarLayout = (AppBarLayout) findViewById(R.id.al_title);
appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
Log.d("AppBarLayout", "offset=" + verticalOffset);
int height = moveView.getHeight();
int minHeight = moveView.getMinHeight();
float fraction = verticalOffset / (float) (minHeight - height);
moveView.setAlpha(1 - fraction);
}
});
}
AppBarLayout和CollapsingToolbarLayout结合
直接上代码
<android.support.design.widget.AppBarLayout
android:id="@+id/al_title"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/ctl_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="@color/colorPrimaryDark"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/iv_title"
android:src="@drawable/ic_bg"
android:layout_width="match_parent"
android:scaleType="centerCrop"
android:layout_height="150dp"
app:layout_collapseParallaxMultiplier="0.5"
app:layout_collapseMode="parallax"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:title="@string/app_name"
android:layout_width="match_parent"
android:layout_height="50dp"
app:title="Collapse"
app:navigationIcon="@android:drawable/ic_media_play"
app:layout_collapseMode="pin"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
下面,我们就来介绍上面这个布局中比较重要的标志位:
app:contentScrim
设置收起之后CollapsingToolbarLayout的颜色,正如例子中的那样,在收起之后,ImageView的背景被我们设置的contentScrim所覆盖。
app:layout_scrollFlags="scroll|exitUntilCollapsed"
scroll标志位是必须设置的,exitUntilCollapsed保证了我们在手指上移的时候,CollapsingToolbarLayout最多收起到Toolbar的高度,使得它始终保持可见。
app:layout_collapseMode="parallax"和app:layout_collapseParallaxMultiplier="0.5"
layout_collapseMode有两种模式,parallax表示视差效果,简单地说,就是当CollapsingToolbarLayout滑动的距离不等于背景滑动的距离,从而产生一种视差效果,而视差效果的大小由app:layout_collapseParallaxMultiplier决定。
app:layout_collapseMode="pin"
layout_collapseMode的另一种模式,它使得Toolbar一直固定在顶端。
参考文献
Material Design 控件知识梳理(2) - AppBarLayout & CollapsingToolbarLayout
Material Design之 AppbarLayout 开发实践总结