Contents

Develop
2016.10.21 11:25

[android] 초간단 얼럿 (AlertDialog)

Views 809 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

# 초간단 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
No. Category Subject Author Date Views
7 Develop [android] 버전 별 앱 알림 설정으로 이동하는 방법 file hooni 2016.11.28 2157
6 Develop [android] 딜레이를 구현하기 위한 꼼수 hooni 2016.11.24 934
5 Develop [android] How can I place app icon on launcher home screen? hooni 2016.11.15 1261
4 Develop [android] Calling activity function from separate class hooni 2016.11.15 1155
3 Develop [Android Error] The number of method references in a .dex file cannot exceed 64K hooni 2016.11.10 754
» Develop [android] 초간단 얼럿 (AlertDialog) hooni 2016.10.21 809
1 Develop [android] dp, px 서로 변환 hooni 2016.10.21 3373
Board Pagination Prev 1 Next
/ 1