일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hilt
- AppBarLayout
- lifecycle
- BOJ
- recyclerview
- View
- kotlin
- 안드로이드
- onLayout
- DataBinding
- activity
- Android
- CollapsingToolbarLayout
- CoordinatorLayout
- Algorithm
- HTTP
- Navigation
- sqlite
- Coroutine
- CustomView
- 알고리즘
- 코틀린
- Behavior
- 백준
- room
- LiveData
- ViewModel
- onMeasure
- 알림
- notification
- Today
- Total
목록셀렉션 (2)
개발일지
SelectionPredicate Select를 좀 더 디테일하게 설정할 수 있다.(하나만 선택, 여러개 선택, ViewHolder에 따른 조건적 선택) SelectionPredicates.createSelectAnything() : 아무거나 여러개 선택가능 SelectionPredicates.createSelectSingleAnything() : 아무거나 한개만 선택가능 SelectionTracker.SelectionPredicate를 상속받아서 구현 ViewHolder에 YES만 선택되게한 예제 class SelectionPredicate(private val recyclerView: RecyclerView) : SelectionTracker.SelectionPredicate() { override ..
Selection Tracker RecyclerView에서 Item을 선택하는 기능을 제공한다. ex) 갤러리에서 사진 여러개 선택 Dependency dependencies { implementation "androidx.recyclerview:recyclerview:1.1.0" // For control over item selection of both touch and mouse driven selection implementation "androidx.recyclerview:recyclerview-selection:1.1.0-rc03" } 기본구조 RecyclerView에서 Select이 발생하면 Select된 ViewHolder의 Id를 Selection에 기록하고, onBindViewHolde..