안드로이드/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 작업을 진행해줘야 합니다.
'Android > 에러' 카테고리의 다른 글
안드로이드/Android ADT 17 업데이트 후 에러 발생 (Android Dependencies 추가) (0) | 2012.09.18 |
---|---|
안드로이드/Android 프로젝트 및 빌드에러 발생시 일반적인 대처 방법 7가지 (0) | 2012.09.07 |
안드로이드/Android 이클립스에서 단말(Device) 인식을 못하는 경우. (2) | 2012.08.10 |
안드로이드/Android Project has no project.properties file! Edit the project properties to set one 에러 (1) | 2012.07.30 |
안드로이드/Android java.lang.NoClassDefFoundError 에러 (2) | 2012.07.30 |