手动滚动RecyclerView不会更新CoordinatorLayout,而通过触摸滚动会更新CoordinatorLayout

时间:2016-02-21 13:01:47

标签: android android-appcompat

 <android.support.design.widget.CoordinatorLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

     <! -- Your Scrollable View -->
    <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
   <android.support.v7.widget.Toolbar
                  ...
                  app:layout_scrollFlags="scroll|enterAlways">

        <android.support.design.widget.TabLayout
                  ...
                  app:layout_scrollFlags="scroll|enterAlways">
     </android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>

当我通过触摸(在屏幕上)scol the recyclerview时,滚动行为按预期工作,但是当我以编程方式滚动recyclerview时

LinearLayoutManager layoutManager = ((LinearLayoutManager) getLayoutManager());
        layoutManager.scrollToPositionWithOffset(spanCount * exactItemPos / mScrollPosState.rowHeight,
                -(exactItemPos % mScrollPosState.rowHeight));

recyclerview滚动工具栏不

2 个答案:

答案 0 :(得分:0)

你可以把

scrollToPositionWithOffset
在您执行{{1}}

之前

答案 1 :(得分:0)

CoordinatorLayout.Behaviour仅适用于NestedScroll事件。当您尝试以编程方式滚动RecyclerView时,将其视为普通滚动。

在下面的行中编写以通知RecyclerView启动NesteadScroll,并使用 ViewCompat.SCROLL_AXIS_VERTICAL ViewCompat.TYPE_NON_TOUCH

ViewCompat.SCROLL_AXIS_VERTICAL::指示沿垂直轴滚动。 ViewCompat.TYPE_NON_TOUCH::指示手势的输入类型是由用户非触摸屏幕引起的。这通常是由于扑杀而来。

recycler_view.startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_NON_TOUCH)
recycler_view.smoothScrollBy(0,200)