Can't create handler inside thread that has not called Looper.prepare() 에러발생시 해결방법
Thread나 Handler사용하다보면 아래과 같은 에러가 발생하면서 죽어버리는 경우가 종종발생합니다.
Can't create handler inside thread that has not called Looper.prepare()
예를들어 아래와 같은 코드를 사용하였는데 위와같은 에러가 뜨면서 죽는다.
new Thread(new Runnable() {
public void run() {
new Handler().postDelayed( new Runnable() {
public void run() {
//하고싶은 작업추가
}
}, 30);
}
}).start();
그럼 밑에 붉은색으로 표시된 부분을 추가하시면 쉽게 해결되실겁니다.
new Thread(new Runnable() {
public void run() {
Looper.prepare();
new Handler().postDelayed( new Runnable() {
public void run() {
//하고싶은 작업ㅊ가
}
}, 30);
Looper.loop();
}
}).start();
'프로그래밍 > 안드로이드' 카테고리의 다른 글
Error generating final archive: Found duplicate file for APK: AndroidManifest.xml 에러시 해결방안 (1) | 2013.06.12 |
---|---|
아이폰 스타일 안드로이드 토글버튼 (1) | 2013.04.26 |
[안드로이드/Android] SharedPreferences (4) | 2013.03.27 |
[자바/Android] java.util.ConcurrentModificationException (6) | 2012.12.27 |
[안드로이드/Android] ImageView에서 ScaleType에 대해.. (0) | 2012.12.21 |
java.lang.IllegalArgumentException: View not attached to window manager (2) | 2012.12.20 |
[안드로이드/Android] 안드로이드 키보드 옵션 (8) | 2012.11.01 |
[안드로이드/Android] Bitmap Drawable 변환 크기 (5) | 2012.10.31 |
SQLite Android Database Cursor window allocation of 2048 kb failed (0) | 2012.10.26 |