반응형
ANR 및 비정상 종료에 대한 리스트 중에 아래와 같은 이유로 종료가 되었습니다. ^^;
android.view.WindowManager$BadTokenException:
Dialog를 띄우는 과정에서 발생
해결책
You cannot display an application window/dialog through a Context that is not an Activity.
Check please that every time you start a dialog it gets correct Context.
if (isFinishing() == false) {
dialog.show();
}
window/dialog의 show() 호출 시, 적용을 했습니다.
다른 분들도 미리 적용을 하면 좀 더 나은 앱이 될거라고 생각합니다. ^^
오늘도 좋은 코딩되세요 ^^
반응형
'Android Tip' 카테고리의 다른 글
XML ImageView에 대한 ContentDescription의 고찰 (0) | 2020.05.07 |
---|---|
안드로이드 8.0에서의 android.os.FileUriExposedException 버그 해결 (1) | 2018.05.10 |
GlideBitmapPool 적용 (Bitmap Out of Memory) (0) | 2017.09.27 |
애니메이션 처리 후 Activity 이동 (0) | 2017.08.25 |
Glide에 대한 기능 정리 (1) | 2017.08.24 |