gpt4 book ai didi

android - Recyclerview 在嵌套 ScrollView 中无限滚动,触发 onScrolled

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:48:26 24 4
gpt4 key购买 nike

我在 nestedscrollview 中有 recyclerview:

   <android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<org.apmem.tools.layouts.FlowLayout
android:id="@+id/filter_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/green_main"
android:paddingLeft="@dimen/small_horizontal_margin"
android:paddingRight="@dimen/small_horizontal_margin"
/>

<android.support.v7.widget.RecyclerView
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:scrollbars="vertical"
android:paddingTop="@dimen/vertical_margin"/>

</LinearLayout>
</android.support.v4.widget.NestedScrollView>

Recyclerview 有 OnScrollListener,它正在处理从这个例子中获取的无限滚动:https://guides.codepath.com/android/Endless-Scrolling-with-AdapterViews-and-RecyclerView .但是,似乎 nestedscrollview 正在触发 onScrolled 方法,因此会立即加载整个项目列表。

问题:我怎样才能防止这种行为?

请注意,对于不在 nestedscrollview 中的 recyclerview,一切都完美无缺

最佳答案

尝试在 RecyclerView 上禁用嵌套滚动:

recyclerView.setNestedScrollingEnabled(false);

解决了我的错误嵌套滚动问题。让我知道这是否有帮助。

关于android - Recyclerview 在嵌套 ScrollView 中无限滚动,触发 onScrolled,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37073376/

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