Contents

조회 수 852 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
메세지를 띄우고 [확인] 버튼만 적용할 경우
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("Yes or No?").setCancelable(false).setPositiveButton("YES",
new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        // 'YES'
    }
}).setNegativeButton("NO",
new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        // 'No'
    return;
    }
});
AlertDialog alert = alert_confirm.create();
alert.show();


[출처] http://shstarkr.tistory.com/144


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1089 Develop [android] 레이아웃 사이즈 변경 (동적; programmatically) hooni 2016.11.07 1486
1088 Develop [android] 만화 어플 소스코드 file hooni 2013.04.23 92838
1087 Develop [android] 멀티터치(Multi touch) 부분 구현 ㅋㅋ file hooni 2013.04.23 27416
1086 Develop [android] 버전 별 앱 알림 설정으로 이동하는 방법 file hooni 2016.11.28 2164
1085 Develop [android] 안드로이드 동영상 스트리밍 예제 2 hooni 2015.01.02 4820
1084 Develop [android] 안드로이드 앱 문서 샘플 file hooni 2017.07.11 2111
1083 Develop [android] 안드로이드 어플 모음 ㅎㅎ secret hooni 2013.04.23 16340
1082 Develop [android] 자동차 리모컨 소스코드 secret hooni 2013.04.23 17082
1081 Develop [android] 점심 해결 앱 소스 코드 ㅋㅋ file hooni 2013.04.23 76397
1080 PPT [Android] 제스처 자료.. file hooni 2013.05.28 51075
1079 System/OS [android] 초간단 HTTP, POST 전송 샘플 1 file hooni 2017.02.16 3478
1078 Develop [android] 초간단 얼럿 (AlertDialog) hooni 2016.10.21 815
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 98 Next
/ 98