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

android-Android-Alert Dialog 不能運行

編輯:編程綜合問答
Android-Alert Dialog 不能運行

不知道什麼原因,Android-Alert Dialog 不能顯示在屏幕上。當按下一個按鈕時,觸發這個事件,但是對話框還是不顯示。如何改進?

  AlertDialog.Builder builder = new AlertDialog.Builder(SummaryActivity.this);
      builder.setTitle(R.string.please_confirm)
             .setMessage(R.string.terms_details)
             .setCancelable(false)
             .setPositiveButton(R.string.sign_to_agree, new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int id) {        
                    Intent DrawIntent = new Intent(getApplicationContext(), DrawingActivity.class);
                    startActivity(DrawIntent);
               }
           })
           .setNegativeButton(R.string.cancel_button_label, new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int id) {
                    dialog.cancel();
               }
           });
     AlertDialog alert = builder.create();

最佳回答:


最後加一句

alert.show();

既可

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved