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