본문 바로가기

Android/에러

안드로이드/Android Only the original thread that created a view hierarchy can touch its views 에러

안드로이드/Android Only the original thread that created a view hierarchy can touch its views 에러



안드로이드 프로젝트를 진행하다 보면 아래와 같은 에러가 발생하게 되는데요.

 
 Only the original thread that created a view hierarchy can touch its views.


이러한 에러가 발생하는 원인은 Main Thread(UI Thread) 외에 다른 부분에서 UI 작업을 하기 위해 View를 사용 할 때 나타나는 에러 메시지 입니다.


해결 방법은 Main Thread(UI Thread) 이 외의 UI 작업에 대해서는 제거하거나 Main Thread(UI Thread) 내에서만 UI 작업을 진행해줘야 합니다.