调整CoordinatorLayout行为

时间:2018-03-01 18:30:45

标签: android android-coordinatorlayout

我们假设我们有以下布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <android.support.v7.widget.SearchView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"/>
    </android.support.design.widget.AppBarLayout>
    <android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|bottom"
        android:layout_margin="@dimen/fab_margin"
        app:srcCompat="@android:drawable/ic_dialog_email" />

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

在此布局中,如果向上拖动SearchView,它将会崩溃并消失。但我想知道如何将这种拖动效果附加到我的RecyclerView。我希望每当我向上滚动SearchView项时都会折叠RecyclerView,但在我向下滚动SearchView项时展开RecylcerView。我是否需要为SearchView创建自定义行为,或者可以通过可用行为创建此效果?

最好的问候

2 个答案:

答案 0 :(得分:0)

使用折叠工具栏布局并在其中包含 searchView ...并使用结束 recyclerView nestedScrollView 并将app:layout_behavior="@string/appbar_scrolling_view_behavior"/>添加到嵌套滚动视图

别忘了将scrollFlagscontent_scrim添加到您的折叠工具栏布局中。

折叠工具栏布局应位于appBarLayout

供参考检查

https://antonioleiva.com/collapsing-toolbar-layout/

答案 1 :(得分:0)

您必须做的唯一更改是将|enterAlways添加到现有的app:layout_scrollFlags属性中。