<legend id='77qaE'><style id='77qaE'><dir id='77qaE'><q id='77qaE'></q></dir></style></legend><tfoot id='77qaE'></tfoot>

      • <bdo id='77qaE'></bdo><ul id='77qaE'></ul>
    1. <small id='77qaE'></small><noframes id='77qaE'>

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

      如何知道一个对话框是否在 Android 中被关闭?

      时间:2023-08-30

        <legend id='5UlZF'><style id='5UlZF'><dir id='5UlZF'><q id='5UlZF'></q></dir></style></legend>

        <small id='5UlZF'></small><noframes id='5UlZF'>

          <tbody id='5UlZF'></tbody>

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

                <tfoot id='5UlZF'></tfoot>
                本文介绍了如何知道一个对话框是否在 Android 中被关闭?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                如果对话框被关闭,我想为我的背景做点什么.所以我想知道对话框是否被关闭

                If the dialog is dismissed,I want to do something for my background.So I want to know if the dialog is dismissed

                推荐答案

                你可以使用 onDismissListener

                http://developer.android.com/reference/android/content/DialogInterface.OnDismissListener.html

                public Dialog createDialog() {
                    Dialog d = new Dialog(this);
                    d.setOnDismissListener(new OnDismissListener() {
                        @Override
                        public void onDismiss(final DialogInterface arg0) {
                            // do something
                        }
                    });
                    return d;
                }
                

                如果您使用的是 DialogFragment,只需覆盖 onDismiss()

                If you are using a DialogFragment just override onDismiss()

                http://developer.android.com/reference/android/app/DialogFragment.html#onDismiss(android.content.DialogInterface)

                这篇关于如何知道一个对话框是否在 Android 中被关闭?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何关闭 AlertDialog.Builder? 下一篇:如何获得 AlertDialog 标题?

                相关文章

                最新文章

                <tfoot id='4IJkw'></tfoot>

              1. <small id='4IJkw'></small><noframes id='4IJkw'>

                    <bdo id='4IJkw'></bdo><ul id='4IJkw'></ul>
                  <legend id='4IJkw'><style id='4IJkw'><dir id='4IJkw'><q id='4IJkw'></q></dir></style></legend>

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