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
- LiveData
- room
- Coroutine
- 코틀린
- sqlite
- 알림
- Algorithm
- notification
- DataBinding
- CollapsingToolbarLayout
- kotlin
- Behavior
- 알고리즘
- CoordinatorLayout
- onLayout
- View
- lifecycle
- AppBarLayout
- hilt
- 안드로이드
- ViewModel
- BOJ
- Navigation
- onMeasure
- CustomView
- activity
- 백준
- Android
- recyclerview
- HTTP
Archives
- Today
- Total
목록NOTIFY (1)
개발일지
Android in A..Z - RecyclerView (AdapterDataObserver)
AdapterDataObserver RecyclerView.Adapter에서 notifyItem~ 함수를 사용할 때 콜백을 받을 수 있는 Observer이다. private val adapterDataObserver = object : RecyclerView.AdapterDataObserver() { override fun onChanged() { super.onChanged() Log.d("PASS", "onChanged") } override fun onItemRangeChanged(positionStart: Int, itemCount: Int) { super.onItemRangeChanged(positionStart, itemCount) Log.d("PASS", "onItemRangeChanged ..
Android (안드로이드)/RecyclerView
2021. 1. 10. 17:34