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>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM