如何在Android中的CoordinateLayout中捕获滚动事件

时间:2015-11-24 10:03:16

标签: android android-coordinatorlayout android-appbarlayout

我有两个工具栏(一组为" enterAlways"另一组是"滚动")和一个coordinatelayout中的recyclerview,我想要实现的是捕获滚动事件时recyclelerview还没有滚动,这意味着当工具栏被设置为" enterAlways"还在滚动。

但是当我尝试使用coordinateLayout.setOnScrollChangeListener()时,它根本不起作用。

我的布局是这样的:

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/list_wrapper">

    <EndlessRecyclerView
        android:id="@+id/listview"
        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:background="#00ff0000"
        >
        <include      app:layout_behavior="com.viki.android.adapter.AbsListener"
            android:id="@+id/header_upper" layout="@layout/inlcude_channelheader_upper" android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_scrollFlags="scroll"/>
        <include android:id="@+id/header_lower" layout="@layout/include_channelheader_lower" android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_scrollFlags="enterAlways"/>

    </android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>

我如何捕获滚动事件以及dx和dy的值,就像listview或recyclerview的onScrollListener一样。

1 个答案:

答案 0 :(得分:18)

AppBarLayout提供了一个监听器,您可以实现监听AppBarLayout的滚动兄弟姐妹向上/向下移动的时间。您要做的是实现该侦听器并将其注册到您的AppBarLayout,如下所示:

 mAppBar.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
        @Override
        public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {

            Log.d("tag_scroll", "recycler_view current offset: "+verticalOffset);
        }
    });