gpt4 book ai didi

android - 如果 RecyclerView 在 NestedScrollView 内,则 RecyclerView 在所有项目上调用 onBindViewHolder()

转载 作者:行者123 更新时间:2023-11-30 00:02:11 25 4
gpt4 key购买 nike

View 结构:

<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 行为很奇怪。通常 onBindViewHolder 方法在可见项上被调用。嗯,在我的例子中,它调用所有项目 - 因此,我在特定项目上设置 Listeners 时遇到问题(当它们被绑定(bind)时)。我必须使用 NestedScrollView。这个废话有解决办法吗?

最佳答案

我花了一些时间想出了一个解决方法。我将我的 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
}
}
});

关于android - 如果 RecyclerView 在 NestedScrollView 内,则 RecyclerView 在所有项目上调用 onBindViewHolder(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49735621/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com