Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Coroutine
- CoordinatorLayout
- CollapsingToolbarLayout
- DataBinding
- notification
- 백준
- ViewModel
- AppBarLayout
- Behavior
- 코틀린
- Android
- CustomView
- HTTP
- room
- sqlite
- kotlin
- lifecycle
- 알고리즘
- activity
- 알림
- BOJ
- hilt
- onLayout
- recyclerview
- 안드로이드
- LiveData
- Algorithm
- View
- Navigation
- onMeasure
Archives
- Today
- Total
개발일지
삽질 - StaggeredGridLayoutManager Margin 본문
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
}
}
'삽질' 카테고리의 다른 글
삽질 - CoordinatorLayout, ViewPager (0) | 2021.01.26 |
---|---|
삽질 - Navigation, ViewPager, setAdapter 오류 (0) | 2021.01.26 |
삽질 - SQLite Add Foreign Key (0) | 2021.01.18 |
삽질 - Android CoordinatorLayout Floating Action Button (0) | 2020.12.10 |
삽질 - CoordinatorLayout RecyclerView (0) | 2020.12.09 |
Comments