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
- Activity
- 팝업액티비티
- Imageview
- 안드로이드
- FRAGMENT
- nav_graph
- Dialog
- firebase
- button
- MaterialButton
- 랜덤ID
- ViewModel
- lifecyclescope
- 코틀린
- Kotlin
- 안드로이드 스튜디오
- BottomSheetDialog
- 밑줄
- firebasefunctions
- 안드로이드스튜디오
- 뷰바인딩
- textview
- Android
- ArrayList
- EditText
- OutlinedButton
- ROOM
- androidstudio
- ButtonWithButton
- RealtimeDB
Archives
- Today
- Total
목록백그라운드 (1)
안드로이드 앱 개발
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)공부
2021. 4. 9. 22:12