빈 구멍 채우기
[Android][GridLayoutManager] view item 센터 정렬 안될 경우
⭐⭐기록
2023. 10. 28. 21:24
문제
GirdLayoutManager를 사용하는 RecyclerView의 뷰 아이템들의 센터 정렬이 먹히지 않는다.
참고
https://stackoverflow.com/a/27622849
RecyclerView GridLayoutAdapter - How to center items
I am using RecyclerView with GridLayoutAdapter. Is it possible to center items horizontally or vertically? My item layout: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:andr...
stackoverflow.com
방법
뷰 아이템의 width가 match_parent나 wrap_content로 변경해야 센터 정렬 설정 값이 먹혔다.
보니까 문제를 일으키는 뷰 아이템의 width 값이 고정되어 있었다. 고정된 가로 값을 풀어주고 나서 원하는 대로 센터 정렬이 됐다.