Notice
Recent Posts
Recent Comments
Link
투케이2K
214. (TWOK/ERROR) [Android] Attempt .. AlertDialog.setTitle(java.lang.CharSequence) on a null object 본문
투케이2K 에러관리
214. (TWOK/ERROR) [Android] Attempt .. AlertDialog.setTitle(java.lang.CharSequence) on a null object
투케이2K 2024. 1. 29. 19:25[환경 설정 및 설명]
프로그램 : AndroidStudio
설 명 : [Android] [빌드 에러] MaterialAlertDialogBuilder requires .. update your theme inherit
NullPointerException: Attempt to invoke virtual method AlertDialog.setTitle(java.lang.CharSequence) on a null object
[에러 원인]
1. new ProgressDialog 인스턴스 생성 없이 AlertDialog.setTitle 타이틀 텍스트를 지정해 발생하는 object null 이슈
[해결 방법]
1. AlertDialog.setTitle 타이틀 텍스트 지정 전에 인스턴스 생성 방어 로직 추가
if (dialog == null){
dialog = new ProgressDialog(MainActivity.this);
}
dialog.setTitle("알림");
반응형
'투케이2K 에러관리' 카테고리의 다른 글
Comments