일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- onLayout
- kotlin
- CollapsingToolbarLayout
- notification
- View
- CustomView
- lifecycle
- Behavior
- 알림
- 알고리즘
- recyclerview
- LiveData
- ViewModel
- sqlite
- room
- 안드로이드
- AppBarLayout
- Android
- BOJ
- Coroutine
- hilt
- CoordinatorLayout
- Navigation
- activity
- DataBinding
- HTTP
- Algorithm
- 코틀린
- onMeasure
- Today
- Total
목록Paging3 (2)
개발일지
PagingAdapter RecyclerView와 결합하여 사용할 수 있고, LoadState로 Loading, Error 등 상황을 표시할 수 있습니다. 코드 BasePagingAdapter abstract class BasePagingAdapter(itemCallback: DiffUtil.ItemCallback) : PagingDataAdapter(itemCallback) { override fun onBindViewHolder(holder: BaseHolder, position: Int) { getItem(position)?.let { holder.bind(it) } } override fun onBindViewHolder(holder: BaseHolder, position: Int, payload..
Paging은 필요한 데이터만 로드하여 표시하는 라이브러리입니다. 사용자에게 리스트를 보여주는 앱에서 사용자에게 한번에 보여줄 수 있는 리스트의 양은 화면 크기에 제한됩니다. 서버에 저장된 모든 리스트 목록을 한번에 받고 메모리에 캐쉬하는 방식보다 필요한 만큼 데이터를 불러와서 리스트를 보여주는 것이 효과적입니다. Paging3 구조 Repository PagingSource : 각 페이지에서 데이터를 얻는 방법을 정의한다. (로컬 데이터베이스에서 데이터를 얻거나 서버에서 받아오도록 설정할 수 있다.) RemoteMediator : 앱에서 캐쉬된 데이터를 모두 사용한 경우 페이징 라이브러에게 신호를 보내는 역할을 한다. ViewModel PagingConfig를 바탕으로 PagingSource에서 데이터..