我做了一个简单的布局,其中有一个AppBarLayout(不会滚动),中间的一些内容以及一个BottomSheet。该BottomSheet实际上是带有BottomSheetBehavior的LinearLayout,并且内部具有RecyclerView。
展开时,此BottomSheet将RecyclerView放置在AppBarLayout的顶部。问题是,当用户尝试滚动此RecyclerView时,下面的AppBarLayout会窃取滚动。
我要保留布局代码,但是我将整个example project上载了带有GIF的GitHub进行了说明。
布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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:id="@+id/coordinator_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:liftOnScroll="false">

        <com.google.android.material.appbar.MaterialToolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:title="@string/app_name" />

        <androidx.appcompat.widget.AppCompatTextView
            android:layout_width="match_parent"
            android:layout_height="56dp"
            android:background="?colorSurface"
            android:gravity="center_vertical"
            android:padding="16dp"
            android:text="Subtitle"
            android:textAppearance="?textAppearanceSubtitle1" />

        <androidx.appcompat.widget.AppCompatTextView
            android:layout_width="match_parent"
            android:layout_height="56dp"
            android:background="?colorSurface"
            android:gravity="center_vertical"
            android:padding="16dp"
            android:text="Subsubtitle"
            android:textAppearance="?textAppearanceBody2" />

    </com.google.android.material.appbar.AppBarLayout>

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="56dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <androidx.appcompat.widget.AppCompatTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="16dp"
            android:text="@string/lorem_ipsum"
            android:textAppearance="?textAppearanceBody1" />

    </androidx.core.widget.NestedScrollView>

    <LinearLayout
        android:id="@+id/bottom_sheet_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="bottom"
        android:background="#FFF"
        android:elevation="5dp"
        android:orientation="vertical"
        app:behavior_hideable="false"
        app:behavior_peekHeight="64dp"
        app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">

        <androidx.appcompat.widget.AppCompatTextView
            android:id="@+id/bottom_sheet_header"
            android:layout_width="match_parent"
            android:layout_height="64dp"
            android:gravity="center_vertical"
            android:padding="16dp"
            android:text="Fruits"
            android:textAppearance="?textAppearanceHeadline6" />

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />

    </LinearLayout>

</androidx.coordinatorlayout.widget.CoordinatorLayout>
我试过了:
  • 在各个地方放置nestedScrollingEnabled属性,但是没有用,这种现象发生在旧的API(如JellyBean)中。
  • 在看到此项目的原始项目中,我编写了一个自定义AppBarLayout行为,以忽略目标 View 是否是BottomSheet的RecyclerView,但也无法正常工作。
  • 当BottomSheet展开且足够有趣时,设置整个AppBarLayoutGONE。AppBarLayout的行为类似于我设置为INVISIBLE的行为(如果以编程方式设置为GONE,则其行为就像不可见的,如果在充气之前设置,则其行为符合预期)。

  • 由于项目规范,我避免使用Fragment创建此BottomSheet。

    最佳答案

    我所做的解决方法是将CoordinatorLayout拆分为2,其中一个包含AppBarLayout和NestedScrollView,另一个包含BottomSheet(LinearLayout)。
    以问题的布局为例的层次结构最终如下:

    <FrameLayout>
        <CoordinatorLayout>
            <AppBarLayout>
                <MaterialToolbar/>
                <AppCompatTextView/>
                <AppCompatTextView/>
            </AppBarLayout>
            <NestedScrollView>
                <AppCompatTextView/>
            </NestedScrollView>
        </CoordinatorLayout>
    
        <CoordinatorLayout>
            <LinearLayout>
                <AppCompatTextView/>
                <RecyclerView/>
            </LinearLayout>
        </CoordinatorLayout>
    </FrameLayout>
    
    就我而言,这是可行的,因为我的BottomSheet不需要与其他 View 协调任何行为。

    关于android - AppBarLayout防止RecyclerView在BottomSheet中滚动,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/64011422/

    10-11 17:09