Contents

Views 2048 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
메세지를 띄우고 [확인] 버튼만 적용할 경우
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
No. Category Subject Author Date Views
123 Develop [c] 단기과정[01/08] (다차원 + 배열)포인터, void 포인터 hooni 2003.04.23 9205
122 Develop [c] 단기과정[01/08] 배열, 포인터 hooni 2003.04.23 8356
121 Develop [c] 단기과정[01/07] 제어문, 피보나치수열 hooni 2003.04.23 8555
120 Develop [c] 단기과정[01/06] sizeof, 실수표현, 메모리, 연산자 hooni 2003.04.23 8368
119 Develop [c] 라인수 입력받아 마름모꼴 출력하기.. hooni 2003.04.23 8164
118 Develop [c] 패킷정보출력(경로, 패킷길이, 3hand, sync, ack..) file hooni 2003.04.23 8486
117 Develop [c] 팩토리얼 서버/클라이언트.. file hooni 2003.04.23 18266
116 Develop [c] OpenGL 관측점 이동 hooni 2003.04.23 9385
115 Develop [c] 정수를 2진수로 변환 (재귀,비트연산) file hooni 2003.04.23 8790
114 Develop [c] OpenGL 임시로 여기 올림.. hooni 2003.04.23 11173
113 Develop [c] 문자열 정렬 함수 qsort() hooni 2003.04.23 9292
112 Develop [c] 문자열 처리(문자열 자르기) hooni 2003.04.23 9486
Board Pagination Prev 1 ... 56 57 58 59 60 61 62 63 64 65 ... 71 Next
/ 71