Android
[android] Only the original thread that created a view hierarchy can touch its views. 에러 발생
hoonylab
2022. 10. 25. 15:07
728x90
반응형
에러코드
android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
발생상황
recyclerview 를 통해 adapter 를 연결하고 adapter내에서 TimerTask를 생성하여 Timer 스케쥴을 등록함.
원인
Main Thread 외의 새로 생성한 Thread를 이용하여 UI를 변경하려 하면 Exception을 발생시킨다.
해결방법으로는 Handler 생성하여 handler 메세지 구현하여 메세지 호출
728x90
반응형