[Android] android.view.WindowManager$BadTokenException: Unable to add window token null is not valid; is your activity running? - Seonmi-Hwang/study GitHub Wiki

Dialog 생성 시 아래와 같이 생성하였을 경우 에러가 발생한다.

new AlertDialog.Builder(getApplicationContext()) {
...
}

getApplicationContext()를 클래스명.this로 변경하면 된다.

이유는 모르겠음.