因为item中的textview的内容很长很长,有几个屏幕那么长,不作处理的情况下,textview显示了一个屏幕,其他的直接给隐藏起来了,这里需要对item的布局做出调整即可,
- 解决:因为textview可能会足够长,所以这里的根布局设置height设置:wrap_content即可
<?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"
android:maxHeight="10000dp">
<TextView
android:id="@+id/item_play_word_tv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/center_declara_content"
android:textSize="30sp"
android:textColor="@color/blue"/>
</LinearLayout>