RecycleView在一页屏幕只显示一个Item
原因是在创建Item时将layout_height属性设成了match_parent,致使一个Item充满了一页屏幕,只要将此属性改为wrap_parent就可以了。
<LinearLayout xmlns: android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content"> <ImageView android:id="@+id/video_image" android:layout_width="80dp" android:layout_height="80dp" /> <TextView android:id="@+id/video_name" android:layout_width="match_parent" android:layout_height="80dp" android:gravity="center"/> </LinearLayout>