반응형 Only the original thread1 [Android] Only the original thread that created a view hierarchy can touch its views 에러 해결 안드로이드에서 Thread를 사용하여 프로그래밍을 진행할 경우 종종 다음과 같은 에러 문구를 만나게 됩니다 CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views. 해당 에러를 직역하게 되면 View 객체의 UI를 변경하려고 하는데 해당 행위는 Original Thread로만 접근이 가능하다는 의미로 즉 MainThread에서 UI를 변경해야 하는데 Sub Thread에서 UI변경작업을 했기에 발생하는 에러라는 의미입니다 해당 에러는 다음과 같은 문구에서 발생했습니다 class TestProcess extends Thread { private boolean stop = .. 2022. 10. 27. 이전 1 다음 반응형