我从 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>
素胚勾勒不出你
相关分类