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