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