Contents

Develop
2016.10.21 11:25

[android] 초간단 얼럿 (AlertDialog)

조회 수 801 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

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

# 초간단 alert 구문 ㅋㅋ

new AlertDialog.Builder(this)
    .setTitle("3G/LTE 데이터 이용 확인")
    .setMessage("이동통신망을 이용하여 웹툰을 보면 별도의 ㄷ이터 통화료가 발생할 수 있습니다.")
    .setNegativeButton("취소", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            // do nothing
        }
    })
    .setPositiveButton("확인", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            // continue with delete
        }
    })
    .setIcon(android.R.drawable.ic_dialog_alert)
    .show();



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1089 System/OS 무료로 HTTPS 적용하기 (Let's Encrypt) file hooni 2017.10.28 1393
1088 Etc How to completely Uninstall Coda hooni 2017.10.24 2063
1087 Etc 영어. 불규칙 동사 정리 file hooni 2017.10.04 3481
1086 System/OS [linux] iptables 초간단 세팅 스크립트 hooni 2017.09.26 1229
1085 Develop [ios] VIN Scanner (VIN barcode) 스캐너 file hooni 2017.09.16 636
1084 System/OS [mac] Homebrew/rvm/cocoapod setting hooni 2017.07.29 989
1083 Etc 캘리포니아 운전면허 문제 file hooni 2017.07.22 968
1082 Develop [android] 안드로이드 앱 문서 샘플 file hooni 2017.07.11 2094
1081 Develop [coding] 공부해야 하는거 ㅋㅋ secret hooni 2017.06.27 0
1080 Develop [coding] Find all anagrams in a string hooni 2017.06.27 1130
1079 Etc IT감사 기법 시험 file hooni 2017.06.14 1406
1078 Develop [android] SQLiteOpenHelper를 이용한 DBManager hooni 2017.06.14 2043
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 98 Next
/ 98