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 |
Tags
- HTTP
- Android
- Algorithm
- CustomView
- View
- 코틀린
- 알림
- DataBinding
- room
- hilt
- Behavior
- 백준
- kotlin
- AppBarLayout
- notification
- CoordinatorLayout
- 알고리즘
- onLayout
- onMeasure
- sqlite
- Navigation
- LiveData
- 안드로이드
- BOJ
- ViewModel
- activity
- recyclerview
- lifecycle
- Coroutine
- CollapsingToolbarLayout
Archives
- Today
- Total
목록AdapterDataObserver (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