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 [android]개발 가이드 및 한글화 문서 file hooni 2013.04.23 47516
60 Develop [android] 화면 전환(가로/세로)시 설정 hooni 2013.04.23 43372
59 Develop [android] 해상도 관련 팁 (dip -> pixel 변환) hooni 2013.04.23 15333
58 Develop [android] 코드에서 문자열로 Resource 가져오기 hooni 2015.07.09 3940
57 Develop [android] 초간단 얼럿 (AlertDialog) hooni 2016.10.21 813
56 Develop [android] 점심 해결 앱 소스 코드 ㅋㅋ file hooni 2013.04.23 76396
55 Develop [android] 자동차 리모컨 소스코드 secret hooni 2013.04.23 17082
54 Develop [android] 안드로이드 어플 모음 ㅎㅎ secret hooni 2013.04.23 16340
53 Develop [android] 안드로이드 앱 문서 샘플 file hooni 2017.07.11 2109
52 Develop [android] 안드로이드 동영상 스트리밍 예제 2 hooni 2015.01.02 4817
51 Develop [android] 버전 별 앱 알림 설정으로 이동하는 방법 file hooni 2016.11.28 2162
50 Develop [android] 멀티터치(Multi touch) 부분 구현 ㅋㅋ file hooni 2013.04.23 27415
Board Pagination Prev 1 ... 61 62 63 64 65 66 67 68 69 70 71 Next
/ 71