AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage(" 보여줄메시지") //간단하게 ex삭제하시겠습니까?
.setCancelable(false)
.setPositiveButton("Yes",
new DialogInterface.OnClickListener() {
public void onClick(
DialogInterface dialog, int id) {
//YES 버튼 눌렸을때 할 작업
}
})
.setNegativeButton("No",
new DialogInterface.OnClickListener() {
public void onClick(
DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
'mobile > android' 카테고리의 다른 글
ADT Setting & AVD Configure (0) | 2019.07.16 |
---|---|
Android Life Cycle (0) | 2019.07.16 |
Android interview (0) | 2019.07.16 |
안드로이드 웹뷰 보안 코딩 : Android Webview Secure Coding (0) | 2019.07.16 |
Android Job Schedule Periodic Background Service (0) | 2019.07.16 |
댓글