Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 在NestedScrollView onBindViewHolder中的RecyclerView调用所有getItemCount大小大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
当我将RecyclerView放入nestedScrollView时,然后onBindViewHolder调用所有行,比如说我有一个大小为30的列表,那么即使没有滚动,也会同时为所有30行调用onBindViewHolder
RecyclerView list;
    linearlayoutmanager layoutManager = new linearlayoutmanager(getContext());
        list.setLayoutManager(layoutManager);
        layoutManager.setAutoMeasureEnabled(true);
        list.setnestedScrollingEnabled(false);
        list.addItemDecoration(new VerticalSpaceItemDecoration(5));
        list.setAdapter(adapter);

我的xml是

<android.support.v4.widget.nestedScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true"
    android:scrollbars="none"
    app:layou@R_616_11164@ehavior="@String/appbar_scrolling_view_behavior">
 <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:BACkground="@color/grey">
    <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_views"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layou@R_616_11164@elow="@+id/info"
            android:layout_marginBottom="5dp"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"
            android:textAlignment="center"

            android:visibility="visible"
           />

但如果我删除nestedScrollView它正常工作.

解决方法

高度问题引起的问题.

1)编辑nestedScrollView& RecyclerView如下:

<android.support.v4.widget.nestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    ......
    app:layou@R_616_11164@ehavior="@String/appbar_scrolling_view_behavior">
        .......
        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_views"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            ..... 
            />

2)确保你编译了’com.android.support:recyclerview-v7:23.2.1′

大佬总结

以上是大佬教程为你收集整理的android – 在NestedScrollView onBindViewHolder中的RecyclerView调用所有getItemCount大小全部内容,希望文章能够帮你解决android – 在NestedScrollView onBindViewHolder中的RecyclerView调用所有getItemCount大小所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。