삽질
삽질 - StaggeredGridLayoutManager Margin
강태종
2021. 1. 20. 20:48
StaggeredGridLayoutManager를 이용한 RecyclerView에서 ViewHolder에 Margin을 설정하면 배치가 이상해지는 오류가 발생했다.
=> gapStrategy를 설정하자
with(binding.recyclerView) {
adapter = MovieAdapter()
addItemDecoration(GridSpacingItemDecoration(2, 5.toDp()))
layoutManager = StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL).apply {
gapStrategy = StaggeredGridLayoutManager.GAP_HANDLING_NONE
}
}