<small id='2jOmA'></small><noframes id='2jOmA'>

      1. <tfoot id='2jOmA'></tfoot>

        <legend id='2jOmA'><style id='2jOmA'><dir id='2jOmA'><q id='2jOmA'></q></dir></style></legend>

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

        在屏幕android上更改对话框的位置

        时间:2023-08-29

          <tbody id='GsCtI'></tbody>
      2. <tfoot id='GsCtI'></tfoot>
          <bdo id='GsCtI'></bdo><ul id='GsCtI'></ul>

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

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

              • <legend id='GsCtI'><style id='GsCtI'><dir id='GsCtI'><q id='GsCtI'></q></dir></style></legend>

                  本文介绍了在屏幕android上更改对话框的位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我在我的Activity中做了一个简单的AlertDialog:

                  I made a simple AlertDialog in my Activity:

                  View view = layoutInflater.inflate(R.layout.my_dialog, null);
                  AlertDialog infoDialog = new AlertDialog.Builder(MyActivity.this)
                                      .setView(view)  
                                      .create();
                  
                  infoDialog.show();
                  

                  使用上面的代码,对话框显示在屏幕的(大约)中心.

                  With above code, the dialog shows at the (about) the center of the screen.

                  我想知道,如何自定义对话框位置以使其显示在顶部操作栏下方?(无论如何要改变对话框的重力或其他东西?)以及如何根据我的代码来做到这一点??

                  I am wondering, how can I customize the dialog position to make it showing just under the top Action Bar ? (Is there anyway to change the gravity or something of the dialog?) and how to do it based on my code??

                  推荐答案

                  我用这段代码在屏幕底部显示对话框:

                  I used this code to show the dialog at the bottom of the screen:

                  Dialog dlg = <code to create custom dialog>;
                  
                  Window window = dlg.getWindow();
                  WindowManager.LayoutParams wlp = window.getAttributes();
                  
                  wlp.gravity = Gravity.BOTTOM;
                  wlp.flags &= ~WindowManager.LayoutParams.FLAG_DIM_BEHIND;
                  window.setAttributes(wlp);
                  

                  如果需要,此代码还可以防止 android 使对话框的背景变暗.您应该能够更改重力参数以移动对话框

                  This code also prevents android from dimming the background of the dialog, if you need it. You should be able to change the gravity parameter to move the dialog about

                  这篇关于在屏幕android上更改对话框的位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Android Studio 错误“安装的构建工具修订版 31.0.0 下一篇:适用于 android 的 Visual Studio (2015) 模拟器无法正常

                  相关文章

                  最新文章

                    <bdo id='3JLhb'></bdo><ul id='3JLhb'></ul>

                  <legend id='3JLhb'><style id='3JLhb'><dir id='3JLhb'><q id='3JLhb'></q></dir></style></legend>
                1. <i id='3JLhb'><tr id='3JLhb'><dt id='3JLhb'><q id='3JLhb'><span id='3JLhb'><b id='3JLhb'><form id='3JLhb'><ins id='3JLhb'></ins><ul id='3JLhb'></ul><sub id='3JLhb'></sub></form><legend id='3JLhb'></legend><bdo id='3JLhb'><pre id='3JLhb'><center id='3JLhb'></center></pre></bdo></b><th id='3JLhb'></th></span></q></dt></tr></i><div id='3JLhb'><tfoot id='3JLhb'></tfoot><dl id='3JLhb'><fieldset id='3JLhb'></fieldset></dl></div>
                2. <tfoot id='3JLhb'></tfoot>
                  1. <small id='3JLhb'></small><noframes id='3JLhb'>