CollapsingToolbarLayout有时会被下方的SwipeRefreshLayout卡住

时间:2016-08-19 22:19:12

标签: android android-studio android-recyclerview android-collapsingtoolbarlayout swiperefreshlayout

当我快速(向上或向下)滚动CollapsingToolbarLayout下方的内容时,我遇到了CollapsingToolbarLayout处于半开状态的问题。

换句话说,当我在RecyclerView(向上或向下)上快速滑动时,CollapsingToolbar会因半开状态下的CollapsingToolbar卡住或卡住。

我的CollapsingToolbarLayout下面有一个SwipeRefreshLayoutandroid.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);

我想知道是否有人遇到这个问题并且知道如何解决它。

1 个答案:

答案 0 :(得分:0)

此错误已在支持库v26版本

中修复