본문 바로가기
안드로이드

[안드로이드] AlertDialog 문제 발생시

by 아스키의 공부방 2020. 12. 5.
728x90
반응형

오류 : WindowManager$BadTokenExceptionWindowManager$BadTokenException: Unable to add window -- token null is not valid; is your activity running?

                AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());

수정

getApplicationContext > 클래스

                AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);

 

728x90
반응형