如何在CoordinatorLayout中为recyclerview创建自定义布局行为

时间:2015-09-01 07:24:27

标签: android android-layout material-design android-coordinatorlayout

我正在使用CoordinatorLayout进行视差效果,同时回收器视图开始滚动AppBarLayout隐藏。直到我完成了。我正在粘贴下面的代码。

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:paddingBottom="@dimen/dimen_sm"
    android:paddingLeft="@dimen/dimen_sm"
    android:paddingRight="@dimen/dimen_sm"
   tools:context=".MainActivity">


    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll">

            <LinearLayout
                android:id="@+id/top_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/white"
                android:orientation="vertical"
                android:paddingBottom="@dimen/dimen_sm"
                android:paddingTop="@dimen/dimen_sm"
                app:layout_collapseMode="parallax">

                <EditText
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" />
            </LinearLayout>

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/dimen_xs"
        app:layout_behavior="string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>

现在,当recyclerview开始滚动时,AppBarLayout开始隐藏。我需要的是

1-是否可以为滚动效果设置自定义行为? ,我的意思是,当用户到达RecyclerView中的最后一项时,我想开始隐藏AppBarLayout。 (假设在回收者视图中有10个项目,当界面开始显示界面中的第10个项目时,视差效果将开始)

2 - 我可以使用其他布局代替AppBarLayout吗?因为我有另一个工具栏可用,如果我使用AppBarLayout我必须使用NoActionBar主题

1 个答案:

答案 0 :(得分:0)

您可以使用自定义折叠工具栏并覆盖on expand并在需要时折叠,即在回收器滚动结束