일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Behavior
- 코틀린
- ViewModel
- notification
- hilt
- View
- 백준
- Algorithm
- BOJ
- AppBarLayout
- sqlite
- Coroutine
- Navigation
- DataBinding
- CustomView
- onLayout
- Android
- CoordinatorLayout
- activity
- LiveData
- lifecycle
- recyclerview
- kotlin
- onMeasure
- 안드로이드
- 알고리즘
- room
- CollapsingToolbarLayout
- 알림
- HTTP
- Today
- Total
목록예제 (2)
개발일지
관계 데이터베이스에서 각 테이블마다 관계가 존재하는 것처럼 Room에도 관계를 설정할 수 있다. Drawer와 ToDo 의 1 : N관계 Drawer 관계에서 사용할 Column을 인덱싱한다. (PrimaryKey를 관계에서 사용할 경우 인덱싱을 할 필요가 없다.) @Entity( indices = [ Index(value = ["name"], unique = true) ] ) data class Drawer( @PrimaryKey(autoGenerate = true) var id: Long = 0L, var name: String = "", ) indices : Index를 나열한다 Index value : 인덱싱할 column unique : 고유값을 가지는지 설정 ToDo @Entity에서 fori..
데이터 미리 채우기 상황에 따라 데이터베이스를 생성할 때 미리 데이터를 채워야 하는 경우나 데이터베이스를 Open할 때 데이터베이스를 조작해야하는 경우가 있다. 데이터베이스에 Callback을 제공하여 이러한 문제를 해결할 수 있다. AppDatabase 데이터베이스를 생성할 때 addCallback을 사용하여 Callback을 추가할 수 있다. @Database(entities = [Drawer::class, ToDo::class], version = 2, exportSchema = true) abstract class AppDatabase : RoomDatabase() { companion object { private var instance: AppDatabase? = null fun getInst..