Contents

조회 수 849 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
61 Develop [ios] 비디오,네트워크,소셜로그인 테스트 file hooni 2017.04.04 686
60 Develop [ios] NSString, RegularExpression Find/Replace hooni 2017.04.14 836
59 Develop [ios] Facebook SDK 로그인 설명 file hooni 2017.04.19 1159
58 Develop [ios] 코코아 프로그래밍의 네이밍 룰(명명 규칙) hooni 2017.05.11 1181
57 Develop 리팩토링 계획안 file hooni 2017.05.15 748
56 Develop 사이버보안실무 발표자료 (2017.06.08) file hooni 2017.06.05 1208
55 Develop 캘리포니아 운전면허 족보 file hooni 2017.06.12 736
54 Develop [android] 간단한 SQLIite 예제 hooni 2017.06.14 1325
53 Develop [android] SQLiteOpenHelper를 이용한 DBManager hooni 2017.06.14 2068
52 Develop [coding] Find all anagrams in a string hooni 2017.06.27 1142
51 Develop [coding] 공부해야 하는거 ㅋㅋ secret hooni 2017.06.27 0
50 Develop [android] 안드로이드 앱 문서 샘플 file hooni 2017.07.11 2109
Board Pagination Prev 1 ... 61 62 63 64 65 66 67 68 69 70 71 Next
/ 71