Contents

조회 수 978 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
105 Develop [ios] NSString, RegularExpression Find/Replace hooni 2017.04.14 926
104 Develop [ios] Facebook SDK 로그인 설명 file hooni 2017.04.19 1288
103 Etc 사이버보안실무 시험. secret hooni 2017.04.20 0
102 Develop [ios] 코코아 프로그래밍의 네이밍 룰(명명 규칙) hooni 2017.05.11 1263
101 Develop 리팩토링 계획안 file hooni 2017.05.15 846
100 System/OS [windows] 윈도우즈 콘솔에서 정품인증 하는 방법 hooni 2017.05.24 5519
99 Develop 사이버보안실무 발표자료 (2017.06.08) file hooni 2017.06.05 1315
98 Develop 캘리포니아 운전면허 족보 file hooni 2017.06.12 858
97 Develop [android] 간단한 SQLIite 예제 hooni 2017.06.14 1442
96 Develop [android] SQLiteOpenHelper를 이용한 DBManager hooni 2017.06.14 2160
95 Etc IT감사 기법 시험 file hooni 2017.06.14 1579
94 Develop [coding] Find all anagrams in a string hooni 2017.06.27 1270
Board Pagination Prev 1 ... 85 86 87 88 89 90 91 92 93 94 ... 98 Next
/ 98