Android-RecycleView在vivo上有条目不显示的问题

开发过程中遇到vivoz3手机以及x23手机,recycleview条目不显示

给recycleview设置

 mListRV.setHasFixedSize(true);

如果设置了还是不行,给recycleview设置固定宽高。

        <android.support.v7.widget.RecyclerView
            android:id="@+id/list"
            android:layout_width="match_parent"
            android:layout_height="380dp"/>

并且原先设置为GONE的。需要修改为INVISIBLE,不能使用GONE

发布了74 篇原创文章 · 获赞 22 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/ci250454344/article/details/99959783