当我快速(向上或向下)滚动CollapsingToolbarLayout
下方的内容时,我遇到了CollapsingToolbarLayout
处于半开状态的问题。
换句话说,当我在RecyclerView(向上或向下)上快速滑动时,CollapsingToolbar会因半开状态下的CollapsingToolbar卡住或卡住。
我的CollapsingToolbarLayout
下面有一个SwipeRefreshLayout
。 android.support.v4.widget.SwipeRefreshLayout
拥有android.support.v7.widget.RecyclerView
。以编程方式添加了collapsingToolbarLayout。
SwipeRefreshLayout中的RecyclerView
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.SwipeRefreshLayout>
一些CollapsingToolbarLayout Params
final AppBarLayout.LayoutParams params = new AppBarLayout.LayoutParams(AppBarLayout.LayoutParams.MATCH_PARENT, AppBarLayout.LayoutParams.MATCH_PARENT);
params.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_EXIT_UNTIL_COLLAPSED);
我想知道是否有人遇到这个问题并且知道如何解决它。
答案 0 :(得分:0)
此错误已在支持库v26版本
中修复