奇奇怪怪bug - 曲面屏RecyclerView显示bug

488 阅读1分钟

某些手机曲面屏展示RecyclerView时,无法铺满(反正就是显示bug)

解决

RecyclerView 外面包裹一层RelativeLayout,一定得是RelativeLayout

<RelativeLayout
    android:id="@+id/rl_list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/rv_list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
</RelativeLayout>

原因猜测:RelativeLayout在执行onMeasure测量child view的时候,会执行两次,所以能解决这个适配的问题