RecyclerView items with big empty space after 23.2.0

前端 未结 5 596
后悔当初
后悔当初 2020-11-30 01:54

After update to v23.2.0 in my RecyclerView I have items with huge empty vertical space, between the items.

My item layout is very simp

5条回答
  •  野性不改
    2020-11-30 02:28

    In my case, I had made the new wrap_content changes but there was still a gap that manifested during onMove or onSwipe. I solved that by adding this code:

    mRecyclerView.getLayoutManager().setMeasurementCacheEnabled(false);
    

提交回复
热议问题