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
- dataginding
- Exception
- vuepress
- porterduff
- fabric-sdk-java
- Hyperledger
- test
- null safety
- LAYER_TYPE_SOFTWARE
- fabic
- 스트리밍
- Android
- coroutines
- web3js
- convert
- quick-start
- 안드로이드
- kotlin
- C
- 다윈
- ethereum
- Gradle
- hardwareacceleration
- Glide
- log
- error
- 컴파일
- bigquery
- firebase
- Realm
Archives
- Today
- Total
목록sample (1)
날마다 새롭게 또 날마다 새롭게
[Android] Kotlin.coroutines 한번 사용해보자 - 초급편
kotlin.coroutines 한번 사용해보자 - 초급편kotlin.coroutines의 간단한 명령들을 사용해보려고 합니다. 실제 구현한 샘플 코드는 Github에 있습니다.light-weight threadscoroutines 에서는 launch라는 명령을 사용해서 thread 처럼 사용이 가능합니다. 아래는 일정 time이 지난 후에 TextView 의 색을 변경하는 코드입니다. delay라는 명령도 coroutines 에서 제공하는 명령입니다.launch(UI) { delay(time) changeColor() }coroutines 에서 구현된 thread 는 light-weight 하기 때문에 다음과 같은 구현이 가능합니다. 코틀린의 guide를 보면 thread를 사용해서 동일하게 구현하면 ..
프로그래밍/Android
2017. 9. 20. 16:03