我在CoordinatorLayout中使用AppBarLayout与RecyclerView具有类似视差效果。 在大多数情况下,它的行为应该如此,但是当向下滚动时,AppBarLayout会崩溃,好像它正在向上滚动一样。 问题是我无法可靠地重现错误,以弄清楚为什么会这样。 这是我的XML布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinatorLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/white_background">
<android.support.design.widget.AppBarLayout
android:id="@+id/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="wrap_content"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<RelativeLayout
android:id="@+id/relativeLayoutTop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_collapseMode="parallax"
app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed">
<ImageView
android:id="@+id/imageViewImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:contentDescription="@null"
android:adjustViewBounds="true"/>
<TextView
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_margin="10dp"
android:id="@+id/textViewBuild"
android:textSize="16sp"
android:textColor="@color/white_background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="smartfactory.ch.frink.widgets.PatchedScrollingViewBehavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerViewNavigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
app:layout_behavior="smartfactory.ch.frink.widgets.PatchedScrollingViewBehavior"/>
</android.support.v4.widget.SwipeRefreshLayout>
</android.support.design.widget.CoordinatorLayout>
这是显示bug(第3次拖动,大约10秒)的视频
我的问题:是否有其他人遇到此错误并找到了解决方法?
修改
经过大量挖掘后,似乎有一个issue用v23.1修复了,但上面的例子是用v23.1编译的,而且bug仍然存在,所以希望有人会看到这个并告诉我我做错了什么或希望重新打开门票。