Views 849 Votes 0 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

?

  1. [js] AngularJS 란?

  2. [ios] APNS에 사용할 인증서 만들기 (KeyChain에 있는 인증서 Export)

  3. [ios] UIWebView에서 로컬에 있는 html 파일 불러오기

  4. [ios] iOS 8 개발자가 우선 알아야 할 3가지

  5. [js] 좋은 강연자료 & UI 자료

  6. [android] 딜레이를 구현하기 위한 꼼수

  7. [ubuntu] 우분투 18.04에 PHP5 설치하기

  8. [ios] Xcode에서 특정 파일만 ARC 따로 설정하는 방법

  9. [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기

  10. [ios] 상위 ViewController 가져오기

  11. [ios] 오브젝티브C→스위프트, 코드 변환 손쉽게

  12. [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태

  13. '2014 모바일 개발 트렌드' 발표자료입니다.

  14. [ios] Xcode의 디버그 모드에서 콜스택

  15. [js] 스크롤 이벤트 막기

  16. [c] FSN 온라인 코딩 테스트 (Sorting, Binary Search)

Board Pagination Prev 1 3 4 5 6 7 ... 53 Next
/ 53