안드로이드
[안드로이드] AlertDialog 문제 발생시
아스키의 공부방
2020. 12. 5. 22:48
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
반응형