如果RecyclerView在NestedScrollView中,RecyclerView会对所有项目调用onBindViewHolder()

时间:2018-04-09 14:40:46

标签: android android-recyclerview

查看结构:

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

    <android.support.design.widget.AppBarLayout>
        <android.support.v7.widget.Toolbar />

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

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <android.support.v7.widget.RecyclerView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:visibility="gone"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent">

            </android.support.v7.widget.RecyclerView>

            <android.support.v7.widget.RecyclerView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:nestedScrollingEnabled="false"
                android:orientation="vertical"
                android:visibility="visible"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_goneMarginTop="0dp" />

            <android.support.v7.widget.RecyclerView  
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dp"
                android:clipToPadding="false"
                android:nestedScrollingEnabled="false"
                android:visibility="gone"
                app:layout_goneMarginTop="0dp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.0"
                app:layout_constraintStart_toStartOf="parent" />

        </ConstraintLayout>
    </NestedScrollView>
</CoordinatorLayout>

实际发生的是,列表中的第二个RecyclerView表现得很奇怪。在visibile项目上调用onBindViewHolder方法。好吧,在我的情况下,它会调用所有项目 - 因此,我遇到了在特定项目上设置Listeners的问题(当它们被绑定时)。我必须使用NestedScrollView。这个废话是否有解决方案?

1 个答案:

答案 0 :(得分:1)

花了一些时间来提出解决方法。我将mRecyclerViews nestedScrollingEnabled设置为false,然后为我的mNestedScrollView设置一个监听器。

听者中:

mNestedScrollView.getViewTreeObserver().addOnScrollChangedListener(new ViewTreeObserver.OnScrollChangedListener() {
           @Override
           public void onScrollChanged()
           {
                    View v = (View)mNestedScrollView.getChildAt(mNestedScrollView.getChildCount() - 1);

                    int diff = (v.getBottom() - (mNestedScrollView.getHeight() + mNestedScrollView.getScrollY()));

                    if (diff == 0) {
                       // pagination
                    }
           }
  });