1

我已经使用我自己的布局 xml 更新了警报对话框格式。

在这个定制的警报对话框中,有两个按钮,一个是保存正在输入的数据,另一个是取消按钮。

我怎么能写取消按钮,这样当用户点击它时,只是简单地关闭对话框?

   public OnClickListener NewRowButtonListener = new OnClickListener()
   {
      @Override
      public void onClick(View v) 
      {               
          AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
          builder.setView(getLayoutInflater().inflate(R.layout.custom_dialog_add, null));
          builder.create();

          AlertDialog Custom_dialog_add = builder.create();
          Custom_dialog_add.show(); // show the Dialog

          Button CancelButton = (Button) findViewById(R.id.CancelButton);
          CancelButton.setOnClickListener(new View.OnClickListener() {       
              @Override 
              public void onClick(View v) {Custom_dialog_add.cancel();}  //WRONG: Cannot refer to a non-final variable Custom_dialog_add inside an inner class defined in a different method
            });         
      } 
   };  

现在修改如下:

       public OnClickListener NewRowButtonListener = new OnClickListener() 
       { 
          @Override 
          public void onClick(View v)  
          { 
              AlertDialog.Builder dialog = new AlertDialog.Builder(MainActivity.this); 
              dialog.setView(getLayoutInflater().inflate(R.layout.custom_dialog_add, null)); 
              dialog.create(); 

               final AlertDialog test = dialog.create(); 
               test.show();

               Button close = (Button) findViewById(R.id.CancelButton); 
               close.setOnClickListener(new android.view.View.OnClickListener() { 
                   public void onClick(View v) { 
                       test.dismiss(); 
                   } 
               });
          }
       };

Eclipse 不会向修改后的编码报告错误,但在模拟时,它会运行空指针异常。logcat如下。这样的问题怎么解决?

09-28 20:15:19.505: E/AndroidRuntime(25847): FATAL EXCEPTION: main
09-28 20:15:19.505: E/AndroidRuntime(25847): java.lang.NullPointerException
09-28 20:15:19.505: E/AndroidRuntime(25847):    at com.pearappx.gamescore3.MainActivity$4.onClick(MainActivity.java:422)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at android.view.View.performClick(View.java:3627)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at android.view.View$PerformClick.run(View.java:14329)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at android.os.Handler.handleCallback(Handler.java:605)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at android.os.Handler.dispatchMessage(Handler.java:92)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at android.os.Looper.loop(Looper.java:137)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at android.app.ActivityThread.main(ActivityThread.java:4511)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at java.lang.reflect.Method.invokeNative(Native Method)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at java.lang.reflect.Method.invoke(Method.java:511)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:980)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:747)
09-28 20:15:19.505: E/AndroidRuntime(25847):    at dalvik.system.NativeStart.main(Native Method)
4

5 回答 5

2

这个代码片段会对你有帮助吗?

        LayoutInflater inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View view = inflater.inflate(R.layout.custom_layout, null);
        AlertDialog.Builder dialog = new AlertDialog.Builder(this);
        dialog.setTitle("dialog");
        dialog.setView(view);
        final AlertDialog test = dialog.create();


        Button close = (Button) view.findViewById(R.id.close_button);
        close.setOnClickListener(new android.view.View.OnClickListener() {
            public void onClick(View v) {
                test.dismiss();

            }
        });

编辑更新版本:

    //Create new alert dialog
    AlertDialog.Builder dialog = new AlertDialog.Builder(this);
    //set title
    dialog.setTitle("title");
    //create the dialog in a final context
    final AlertDialog test = dialog.create();
    //inflate the custom layout in to a View object
    View view = getLayoutInflater().inflate(R.layout.custom_dialog_add, null);

    //find the Button object within the inflated view
    //                       ↓↓↓
    Button close = (Button) view.findViewById(R.id.CancelButton);
    //set the onClickListener
    close.setOnClickListener(new OnClickListener() { 
        public void onClick(View v) { 
            test.dismiss(); 
        } 
    });
    //show the dialog
    test.show();

不要忘记使用正确的导入!

于 2012-09-25T18:00:01.560 回答
0

您是否使用单独的活动将布局作为对话框或任何其他方式启动?如果您使用单独的活动来启动布局

只需调用

youractivity.this.finish()

在您的取消按钮 onclick 事件中

于 2012-09-25T17:53:45.710 回答
0

这里有一个例子:

 // creates Dialogs for this Activity
   @Override
   protected Dialog onCreateDialog(int id) {
       final Dialog dialog;
       switch(id) {
       case DIALOG_REALLY_EXIT_ID:
           dialog = new AlertDialog.Builder(this).setMessage(
                               "Do you really want to exit this activity?")
           .setTitle("Exit activity")                    
           .setCancelable(false)
           .setPositiveButton("Yes",
                   new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int id) {
                //add your code you would like to be execute when clicking "yes"
                //for example the below to exit your activity
                    //Main.this.finish();
               }
           })
           .setNegativeButton("No",
                   new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int id) {
                   dialog.cancel(); //to dismiss this dialog
           //add any additional things you would like to execute when pressing the no button

               }
           }).create();
           break;
       default:
           dialog = null;
       }
       return dialog;
   }
于 2012-09-25T18:01:21.237 回答
0

这在对话框 { } 中(例如:public void Dialog(...){ here.. }

    DialogInterface.OnClickListener cancel = new DialogInterface.OnClickListener() {            
        public void onClick(DialogInterface dialog, int which) {
            // TODO Auto-generated method stub

            1 add = 1.this;
            add.finish();

            Intent showActivity = new Intent(1.this, 2.class);
            1.this.startActivity(showActivity);

        }
    };

编辑这些:
1 - 您所在的 .java 文件的名称。
2 - 对话框取消时要打开/显示的 .java 类的名称。

然后把这段代码

builder.setNegativeButton("Cancel", cancel);

会发生什么?当您单击“取消”按钮时,它将关闭“页面(带有对话框)并打开您想要的活动/页面。


或试试这个:dialogo.setNeutralButton("Cancel", null);

于 2012-09-25T18:03:30.770 回答
0

您可以自己创建按钮。在该按钮上设置一个 onClickListener 并在 onClick() 内部调用,您可以调用dialog.cancel();它来简单地取消对话框。

于 2012-09-25T18:08:34.207 回答