我想實現一個彈出窗口“確定要刪除該項目嗎?”
或者點擊按鈕刪除。
如果我點擊確認按鈕,該項就刪除了。
我用代碼寫了點擊按鈕的監聽器,但不知道用什麼來調用對話框或者彈出菜單,來實現這個功能…
你可以使用alert builder:
new AlertDialog.Builder(this)
.setTitle("Delete entry")
.setMessage("Are you sure you want to delete this entry?")
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// continue with delete
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// do nothing
}
})
.show();