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
- RealtimeDB
- textview
- OutlinedButton
- 밑줄
- MaterialButton
- FRAGMENT
- 안드로이드 스튜디오
- 랜덤ID
- ViewModel
- firebasefunctions
- lifecyclescope
- button
- 안드로이드
- 안드로이드스튜디오
- Android
- ROOM
- androidstudio
- Kotlin
- Activity
- 코틀린
- Imageview
- EditText
- 뷰바인딩
- nav_graph
- 팝업액티비티
- ArrayList
- BottomSheetDialog
- Dialog
- ButtonWithButton
- firebase
Archives
- Today
- Total
안드로이드 앱 개발
Coroutine 사용 방법 본문
1. dependency를 추가한다.
implrmentation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
안드로이드에는 UI thread와 Worker thread가 존재한다고 한다.
예를 들어, Room library를 사용해서
내장 DB에 접근할 때 UI thread에서 메소드를 작동하면
error로 앱이 종료된다.
2. 백그라운드에서 작업되야하는 코드를 작성한다.
lifecycleScope.launch(Dispatchers.IO){
//백그라운드 작업 코드
}
'코틀린(Kotlin)공부' 카테고리의 다른 글
kotlin에서 list, arraylist의 groupby (0) | 2021.04.27 |
---|---|
CheckBox에 setOnCheckedChangeListner 달기 (0) | 2021.04.15 |
BottomSheetDialog_Modal - Kotlin (0) | 2021.03.29 |
for문 - Kotlin (0) | 2021.03.29 |
BottomNavigationView에서 transaction already commit called 오류 (0) | 2021.03.28 |