AlertDialog.Builder alert = new AlertDialog.Builder(this);
// 제목, 메시지, icon, 버튼
alert.setTitle(" 알림 ");
alert.setMessage(" 무언가를 하고 싶은가요? ");
// cancel : false = 단말기 back button으로 취소되지 않음.
alert.setCancelable(false);
// yes
alert.setPositiveButton("Yes", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int id){
//Yes 버튼을 눌렀을때 일어날 일을 서술한다.
}
});
// no
alert.setNegativeButton("No", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int id){
dialog.cancel();// No 버튼을 눌렀을 경우이며 단순히 창을 닫아 버린다.
}
});
alert.show();
'프로그래밍 > 안드로이드' 카테고리의 다른 글
Using WiFi API (0) | 2010.10.27 |
---|---|
[안드로이드] CheckBox 체크박스 이미지 바꾸기 (0) | 2010.10.21 |
[안드로이드] 안드로이드 버튼 눌렀을때 이미지 바꾸기 (0) | 2010.10.21 |
HorizontalScrollView ScrollBar 위치를 원하는 곳으로 옮기기. (0) | 2010.10.19 |
[안드로이드] EditText에 이벤트 주기 (0) | 2010.10.14 |
가로, 세로 화면을 내가 원하는대로 구성하기 (0) | 2010.10.14 |
Dialog 타이틀바 없애기. (0) | 2010.10.14 |
[안드로이드 팁]안드로이드 화면 켜짐 유지(화면 안꺼지게 하기) (1) | 2010.10.12 |
안드로이드 [초보플밍] - 'Refreshing external folders' 경고창 없애는 방법 (0) | 2010.10.11 |