其他分享
首页 > 其他分享> > recycleview布局混乱

recycleview布局混乱

作者:互联网

使用recycleview的时候,item里面的布局在预览界面没问题,但是实际运行结果很糟糕,我用的是linearlayoutmanager,原来布局中最外围的linearlayout不能只包含一个子布局

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

<内容>

</LinearLayout>
</LinearLayout>

改成

<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical">

<内容>

</LinearLayout>
huangjunjie1991 发布了24 篇原创文章 · 获赞 12 · 访问量 3万+ 私信 关注

标签:私信,recycleview,layout,布局,混乱,文章,android
来源: https://blog.csdn.net/huangjunjie1991/article/details/104558690