After update to v23.2.0 in my RecyclerView I have items with huge empty vertical space, between the items.
RecyclerView
My item layout is very simp
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);