• <legend id='yGWwY'><style id='yGWwY'><dir id='yGWwY'><q id='yGWwY'></q></dir></style></legend>
  • <tfoot id='yGWwY'></tfoot>

      <bdo id='yGWwY'></bdo><ul id='yGWwY'></ul>
    <i id='yGWwY'><tr id='yGWwY'><dt id='yGWwY'><q id='yGWwY'><span id='yGWwY'><b id='yGWwY'><form id='yGWwY'><ins id='yGWwY'></ins><ul id='yGWwY'></ul><sub id='yGWwY'></sub></form><legend id='yGWwY'></legend><bdo id='yGWwY'><pre id='yGWwY'><center id='yGWwY'></center></pre></bdo></b><th id='yGWwY'></th></span></q></dt></tr></i><div id='yGWwY'><tfoot id='yGWwY'></tfoot><dl id='yGWwY'><fieldset id='yGWwY'></fieldset></dl></div>

    <small id='yGWwY'></small><noframes id='yGWwY'>

        如何关闭 AlertDialog.Builder?

        时间:2023-08-30
        <legend id='gXzJH'><style id='gXzJH'><dir id='gXzJH'><q id='gXzJH'></q></dir></style></legend>
        <tfoot id='gXzJH'></tfoot>

        <small id='gXzJH'></small><noframes id='gXzJH'>

          <bdo id='gXzJH'></bdo><ul id='gXzJH'></ul>
          <i id='gXzJH'><tr id='gXzJH'><dt id='gXzJH'><q id='gXzJH'><span id='gXzJH'><b id='gXzJH'><form id='gXzJH'><ins id='gXzJH'></ins><ul id='gXzJH'></ul><sub id='gXzJH'></sub></form><legend id='gXzJH'></legend><bdo id='gXzJH'><pre id='gXzJH'><center id='gXzJH'></center></pre></bdo></b><th id='gXzJH'></th></span></q></dt></tr></i><div id='gXzJH'><tfoot id='gXzJH'></tfoot><dl id='gXzJH'><fieldset id='gXzJH'></fieldset></dl></div>
            <tbody id='gXzJH'></tbody>

                  本文介绍了如何关闭 AlertDialog.Builder?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  在下面的代码中,如何关闭警报框?我不想造成内存泄漏.我在alertDialog上尝试了.dismiss(),但是没有用...谢谢

                  In the following code below, how do I dismiss the alert box? I don't want to cause a memory leak. I tried the .dismiss() on alertDialog, but that didn't work... Thanks

                  // User pressed the stop button
                  public void StopMsg_button_action(View view){
                      final EditText password_input = new EditText(this); // create an text input field
                      password_input.setHint("Enter Password"); // put a hint in it
                      password_input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD); // change it to password type
                  
                      AlertDialog.Builder alertDialog = new Builder(this); // create an alert box
                      alertDialog.setTitle("Enter Password"); // set the title
                      alertDialog.setView(password_input);  // insert the password text field in the alert box
                      alertDialog.setPositiveButton("OK", new DialogInterface.OnClickListener() { // define the 'OK' button
                          public void onClick(DialogInterface dialog, int which) {
                               String entered_password = password_input.getText().toString();
                               if (entered_password.equals(my_password)) {
                                  locManager.removeUpdates(locListener); // stop listening for GPS coordinates
                                  startActivity(new Intent(Emergency_1Activity.this,Main_MenuActivity.class)); // go to main menu
                               } else {
                                   alert("Incorrect Password");
                               }
                          } 
                      });
                      alertDialog.setNeutralButton("Cancel", new DialogInterface.OnClickListener() { // define the 'Cancel' button
                          public void onClick(DialogInterface dialog, int which) {
                  
                          } 
                      });
                      alertDialog.show(); // show the alert box
                  }
                  

                  推荐答案

                  dismiss() 有什么问题?

                  What didn't work about dismiss()?

                  您应该可以使用 Dialog.dismiss(),或 Dialog.cancel()

                  You should be able to use either Dialog.dismiss(), or Dialog.cancel()

                  alertDialog.setNeutralButton("Cancel", new DialogInterface.OnClickListener() { // define the 'Cancel' button
                      public void onClick(DialogInterface dialog, int which) {
                          //Either of the following two lines should work.
                          dialog.cancel();
                          //dialog.dismiss();
                      } 
                  });
                  

                  这篇关于如何关闭 AlertDialog.Builder?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:从 Android 的视图中打开带有文本输入的对话框 下一篇:如何知道一个对话框是否在 Android 中被关闭?

                  相关文章

                  最新文章

                      • <bdo id='KEfQu'></bdo><ul id='KEfQu'></ul>
                      <legend id='KEfQu'><style id='KEfQu'><dir id='KEfQu'><q id='KEfQu'></q></dir></style></legend>

                      <small id='KEfQu'></small><noframes id='KEfQu'>

                      <i id='KEfQu'><tr id='KEfQu'><dt id='KEfQu'><q id='KEfQu'><span id='KEfQu'><b id='KEfQu'><form id='KEfQu'><ins id='KEfQu'></ins><ul id='KEfQu'></ul><sub id='KEfQu'></sub></form><legend id='KEfQu'></legend><bdo id='KEfQu'><pre id='KEfQu'><center id='KEfQu'></center></pre></bdo></b><th id='KEfQu'></th></span></q></dt></tr></i><div id='KEfQu'><tfoot id='KEfQu'></tfoot><dl id='KEfQu'><fieldset id='KEfQu'></fieldset></dl></div>
                      <tfoot id='KEfQu'></tfoot>