程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-Android中顯示提醒對話框問題

android-Android中顯示提醒對話框問題

編輯:編程綜合問答
Android中顯示提醒對話框問題

我想實現一個彈出窗口“確定要刪除該項目嗎?”
或者點擊按鈕刪除。
如果我點擊確認按鈕,該項就刪除了。
我用代碼寫了點擊按鈕的監聽器,但不知道用什麼來調用對話框或者彈出菜單,來實現這個功能…

最佳回答:


你可以使用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();
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved