Notice
Recent Posts
Recent Comments
Link
투케이2K
99. (TWOK/ALGORITHM) [Kotlin] 문법 - 코루틴 (coroutine) Main 사용해 UI 변경 작업 수행 본문
투케이2K 알고리즘
99. (TWOK/ALGORITHM) [Kotlin] 문법 - 코루틴 (coroutine) Main 사용해 UI 변경 작업 수행
투케이2K 2023. 1. 24. 11:35[환경 설정 및 설명]
언 어 : Kotlin
설 명 : 문법 - 코루틴 (coroutine) Main 사용해 UI 변경 작업 수행
[소스 코드]
// TODO [테스트 메소드 정의 실시]
fun testMain(){
Log.i("---","---")
Log.d("//===========//","================================================")
Log.i("","\n"+"[Test_Kotlin > testMain() 메소드 : 테스트 함수 동작 실시]")
Log.d("//===========//","================================================")
Log.i("---","---")
/**
* ------------------------------------
* TODO [요약 설명]
* ------------------------------------
* 1. 코루틴은 동시성 프로그래밍으로 비동기적으로 실행되는 코드입니다
* ------------------------------------
* 2. 코루틴은 백그라운드 스레드 (네트워크 통신) 에서 코드를 처리할 때 자주 사용됩니다
* ------------------------------------
* 3. 코틀린 스코프는 새로운 코루틴을 생성함과 동시에 실행되어야 할 Job 을 그룹핑 합니다
* ------------------------------------
* 4. Main : 메인 쓰레드에 대한 Context 이며, UI 갱신이나 View 작업에 사용합니다
* ------------------------------------
* 5. 필요 import :
*
* import kotlinx.coroutines.CoroutineScope
* import kotlinx.coroutines.Dispatchers.Main
* import kotlinx.coroutines.launch
* ------------------------------------
* 6. 코루틴 개념 참고 사이트 : https://kkh0977.tistory.com/2761
* ------------------------------------
* */
try{
// ------------------------------------
// [초기 변수 및 객체 선언]
var strData = "핼로"
// ------------------------------------
// [로직 처리 실시]
CoroutineScope(Main).launch {
Log.i("---","---")
Log.w("//===========//","================================================")
Log.i("","\n"+"[Test_Kotlin > testMain() 메소드 : CoroutineScope 코루틴 로직 처리 실시]")
Log.w("//===========//","================================================")
Log.i("---","---")
// [작업 내용 처리]
strData = strData + " 투케이2K"
// [ui 작업 실시]
display_textview.setText(strData)
}
// ------------------------------------
}
catch(e : Exception){
Log.i("---","---")
Log.e("//===========//","================================================")
Log.i("","\n"+"[Test_Kotlin > testMain() 메소드 : 에러 상황 발생]")
Log.i("","\n"+"[error : "+ e.message +"]")
Log.e("//===========//","================================================")
Log.i("---","---")
}
}
[결과 출력]
반응형
'투케이2K 알고리즘' 카테고리의 다른 글
Comments