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

Room Room이란 SQLite를 쉽게 사용할 수 있도록 제공하는 추상레이어 라이브러리이다. Room을 사용하여 Android에 Database구현를 쉽고 빠르게 할 수 있다. Room은 기본적으로 LiveData, Optional, Cursor 등의 강력한 기능도 지원한다. dependency dependencies { def room_version = "2.2.5" implementation "androidx.room:room-runtime:$room_version" kapt "androidx.room:room-compiler:$room_version" // optional - Kotlin Extensions and Coroutines support for Room implementation "an..
Android (안드로이드)/Room
2021. 1. 17. 02:28