您的位置:

详解AppbarLayout

一、AppbarLayout折叠

Android Material Design提供了名为AppBarLayout的布局组件,它是为了实现类似Toolbar的透明与伸缩效果。

首先,我们需要在xml中定义一个AppBarLayout布局,然后再在其中添加Toolbar。

    
        <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/AppTheme.AppBarOverlay">
            
            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                android:popupTheme="@style/AppTheme.PopupOverlay"/>
        </android.support.design.widget.AppBarLayout>
    

接下来,我们需要在java代码中对AppBarLayout进行操作:

    
        AppBarLayout appbarLayout = findViewById(R.id.appbar_layout);
        appbarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
            @Override
            public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
                // Implement your logic here
            }
        });
    

addOnOffsetChangedListener监听方法会在AppBarLayout进行折叠时进行回调,其中参数verticalOffset表示当前AppBarLayout的高度。

二、AppbarLayout嵌套RecyclerView

AppbarLayout常常与RecyclerView一起使用,实现可伸缩的布局。需要使用CoordinatorLayout来实现。代码如下:

    
        <android.support.design.widget.CoordinatorLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
    
            <android.support.design.widget.AppBarLayout
                android:id="@+id/appbar_layout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
    
                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:background="?attr/colorPrimary" />
    
            </android.support.design.widget.AppBarLayout>
    
            <android.support.v7.widget.RecyclerView
                android:id="@+id/recyclerView"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_behavior="@string/appbar_scrolling_view_behavior" />
    
        </android.support.design.widget.CoordinatorLayout>
    

注意,在RecyclerView中需要添加appbar_scrolling_view_behavior属性

三、AppbarLayout OnNestedPreScroll

AppbarLayout有一个OnNestedPreScroll监听方法,在嵌套滑动事件中触发。可以通过该方法来监听嵌套滑动事件,进行个性化的处理,例如实现头部高度放大效果。

    
        appbarLayout.addOnOffsetChangedListener(
            new AppBarLayout.OnOffsetChangedListener() {
                @Override
                public void onOffsetChanged(AppBarLayout appBarLayout,
                        int verticalOffset) {
                    recyclerView.setPadding(0, -verticalOffset, 0, 0);
                }
            });
    

上述代码实现了随着AppBarLayout的折叠,RecyclerView的padding也会发生改变。

四、AppbarLayout禁止折叠

有时候,我们可能希望AppbarLayout不能被折叠。这可以通过在AppBarLayout中添加 app:layout_scrollFlags="scroll"属性来实现。

    
        <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:elevation="0dp"
            app:layout_scrollFlags="scroll">
            <android.support.v7.widget.Toolbar
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="@drawable/shape_test"
                app:layout_scrollFlags="scroll"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
        </android.support.design.widget.AppBarLayout>
    

上面代码中,设置了AppBarLayout不被折叠的属性,Toolbar也被设置为不可折叠,防止和AppBarLayout发生冲突。

五、AppbarLayout禁止滑动

如果我们不想让AppbarLayout随着底部View的滑动而滑动,可以为底部View设置 app:layout_behavior="@null"

    
        <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@null" />
    

这段代码在RecyclerView中设置了app:layout_behavior="@null",使得RecyclerView下滑时AppBarLayout不再跟随滑动,固定在顶部。