RecyclerView只显示一行的问题,RecyclerView只显示一个item,其它的全被覆盖了
以下是item.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="wrap_content"
android:orientation="vertical"
>
<CheckedTextView
android:id="@+id/item_food"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
android:text="CheckedTextView" />
</LinearLayout>
<?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="wrap_content"//重点是这里高度要设计wrap_content
android:orientation="vertical"
>
<CheckedTextView
android:id="@+id/item_food"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
android:text="CheckedTextView" />
</LinearLayout>
- 本文标题: RecyclerView只显示一行的问题,RecyclerView只显示一个item,其它的全被覆盖了
- 文章分类:【Android】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.