RecyclerView 在向下滚动时崩溃(IndexOutOfBoundsException:)

我从 json 解析数据并将其传递给包含两个 Arraylist 的 ArrayList,然后将它们传递给 RecyclerView,RecyclerView 显示数据,但 1 项占用整个页面,当我向下滚动时,我可以看到第二项,然后它崩溃了

我尝试了很多人的建议,让父视图或回收商的视图 layout_heigt="wrap_content" 它甚至不会打开页面这里是回收商的视图 xml(activity_resultsdwldview) 和 row.xml 其中包含每行的 cardview 设计

如果这没有组织或不清楚,请原谅我,我真的时间很短,而且是一个没有太多经验的初级 android 开发人员

activity_resultsdwldview.xml

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:app="http://schemas.android.com/apk/res-auto"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    tools:context=".Resultsdwldview">


    <LinearLayout

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        andoid:orientation="vertical">


        <android.support.v7.widget.RecyclerView

            android:id="@+id/recyvlerView"

            android:layout_width="match_parent"

            android:layout_height="match_parent" />

    </LinearLayout>


</RelativeLayout>

行.xml


<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical">


    <android.support.v7.widget.CardView

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:layout_marginStart="12dp"

        android:layout_marginTop="12dp"

        android:layout_marginEnd="12dp"

        android:layout_marginBottom="12dp">


        <LinearLayout

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:orientation="vertical">


            <TextView

                android:id="@+id/nameArray"


                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:textSize="20dp" />


        </LinearLayout>

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

</LinearLayout>


慕雪6442864
浏览 183回答 1
1回答

素胚勾勒不出你

您的适配器的大小由以下各项设置:&nbsp;@Override&nbsp; &nbsp; public int getItemCount() {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return Tests.size();&nbsp; &nbsp; }并且您尝试从以下位置获取物品:&nbsp;@Override&nbsp; &nbsp; public void onBindViewHolder(@NonNull MainAdapter.ViewHolder holder, int i) {&nbsp; &nbsp; &nbsp; &nbsp; holder.URLName.setText( urlArray.get(i));&nbsp; &nbsp; &nbsp; &nbsp; holder.mFullname.setText( nameArray.get(i));&nbsp; &nbsp; }您需要将适配器大小设置为您要检索的大小:&nbsp;@Override&nbsp; &nbsp; &nbsp; &nbsp; public int getItemCount() {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;urlArray.size()&nbsp; &nbsp; &nbsp; &nbsp; }或者&nbsp;@Override&nbsp; &nbsp; public int getItemCount() {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return nameArray.sizes()&nbsp; &nbsp; }我建议使用单个数组,或者可能是一个映射,以避免类似的问题。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java