1. 程式人生 > >android recyclerView只調用一次onCreateViewHolder,只生成一個item

android recyclerView只調用一次onCreateViewHolder,只生成一個item

按理說RecyclerView中getItemCount函式返回的數是多少,就會生成多少個item。

但是getItemCount返回3,RecyclerView也只生成一個item。

原因:item的layout的最外層佈局的layout_width和layout_height不能是match_parent。如果recyclerView是橫向排列的,item的width不能是match_parent,如果item是縱向排列的,item的height不能是match_parent。否則第一個item就會把其他的item擠出recyclerLayout

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

<!--這個是最外層的佈局-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="match_parent">

    <TextView
        android:id="@+id/tv_circle"
        android:layout_width="34dp"
        android:layout_height="34dp"
        android:background="@drawable/textview_choose_color"/>

    <View
        android:layout_width="40dp"
        android:layout_height="1dp"
        android:layout_toRightOf="@id/tv_circle"></View>

</RelativeLayout>