我在带有 CollapsingToolbarLayout 的 RecyclerView 中发现了奇怪的行为。当我滚动 RecyclerView - 它工作得很好。但是,当我尝试甩动它并以足够快的速度停止甩动时 - 我可以看到,RecyclerView 在“内部”滚动。
不良的投掷行为:
在 CollapsingToolbarLayout 完全折叠之前,RecyclerView 不应该是可滚动的,但它是(在正常情况下滚动一切正常,问题仅在投掷时出现)。
我的布局如下所示:
<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"
tools:context="kg.nongrate.arseniii.collapsingtoolbarlayouttest.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<TextView
android:layout_width="match_parent"
android:layout_height="240dp"
android:layout_marginTop="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:text="1. Hello World!\n\n\n2. Hello World!\n\n\n3. Hello World!"
android:textColor="@color/colorAccent"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.7"
android:gravity="center" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0cc"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
以下是说明我的意思的来源和两个视频: https://NonGrate@bitbucket.org/NonGrate/collapsingtoolbarlayout-recyclerview-bug.git