[Kotlin]Only the original thread that created a view hierarchy can touch its views.
2019. 8. 20. 14:41ㆍCoding/Android Studio
728x90
다음에서 지원하는 주소검색 api를 webView를 통해 이용해보려 하는데,
webView에서 값을 받을때, 계속 죽음.
이유는 setText()등 UI를 변경하려면 메인 스레드에서만 해야함.
해결방법
runOnUiThread {
// UI변경 부분을 입력하자
}
다른 방법으로도 해보느라 찾는데 시간은 좀 걸렸지만...아주 간단하게 해결.
728x90
'Coding > Android Studio' 카테고리의 다른 글
[Kotlin]Switch 색상 바꾸기 (0) | 2019.09.04 |
---|---|
[Kotlin]Custom Dialog Fragment 화면 꽉차게 출력하기 (0) | 2019.08.30 |
[Kotlin] Android Studio Kotlin xml code 정렬이 한줄로 나올때 (0) | 2019.08.14 |
[Kotlin]TextView 등 글자색 지정 방법 getColor is deprecated (0) | 2019.08.06 |
[Kotlin]initialized 체크 (0) | 2019.08.06 |