반응형
출처:http://shstarkr.tistory.com/144
메세지를 띄우고 [확인] 버튼만 적용할 경우
메세지를 띄우고 [확인], [취소] 버튼으로 적용할 경우
AlertDialog.Builder alert = new AlertDialog.Builder(MyActivity. this ); alert.setPositiveButton( "확인" , new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { dialog.dismiss(); //닫기 } }); alert.setMessage( "테스트 메세지" ); alert.show(); |
메세지를 띄우고 [확인], [취소] 버튼으로 적용할 경우
AlertDialog.Builder alert_confirm = new AlertDialog.Builder(MyActivity. this ); alert_confirm.setMessage( "프로그램을 종료 하시겠습니까?" ).setCancelable( false ).setPositiveButton( "확인" , new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // 'YES' } }).setNegativeButton( "취소" , new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // 'No' return ; } }); AlertDialog alert = alert_confirm.create(); alert.show(); |
반응형
'개발 > APP' 카테고리의 다른 글
간단한 웹뷰 컴포넌트의 이해와 최적화 (0) | 2018.12.10 |
---|---|
[안드로이드 웹뷰] 웹에서 네이티브앱의 액티비티 호출하기 (0) | 2018.12.10 |
안드로이드 MIUI 보안의 자동시작 (1) | 2018.11.22 |
안드로이드 전화 수발신 이력 발생에 따른 옵저버 처리 (0) | 2018.11.22 |
안드로이드 브로드캐스트리시버 제한 업데이트(Oreo 8.0) (1) | 2018.11.22 |