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

    1. <tfoot id='lXo7n'></tfoot>
        <bdo id='lXo7n'></bdo><ul id='lXo7n'></ul>
    2. <small id='lXo7n'></small><noframes id='lXo7n'>

        Android - 创建进度对话框

        Android - Create Progress Dialog(Android - 创建进度对话框)

              • <bdo id='YysKf'></bdo><ul id='YysKf'></ul>

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

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

                <tfoot id='YysKf'></tfoot>

                    <tbody id='YysKf'></tbody>
                  本文介绍了Android - 创建进度对话框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我是安卓开发新手.我想在我的应用程序中开发一个带有 progressbardialog.当我单击搜索按钮时,dialog 应该与 progressbar 一起出现,显示在切换到另一个 activity 之前进度正在进行.请用示例代码向我推荐.

                  I am new to android development. I want to develop a dialog with a progressbar in my application. When i click the search button the dialog should appear with the progressbar, showing that the progress is going on before switching to another activity. Please suggest me with sample code.

                  推荐答案

                  使用 ProgressDialog.不过,您应该在一个新的 thread 上完成这项工作,并在完成后使用 handler 回调 activity.这是我的做法:

                  Use a ProgressDialog. You should do the work on a new thread, though, and use a handler to call back to the activity when finished. Here's how I do it:

                  private ProgressDialog pd;
                  
                  private View.OnClickListener searchClick = new View.OnClickListener() {
                  
                      @Override
                      public void onClick(View v) {
                          pd = ProgressDialog.show(MyActivity.this, "Searching...", "Searching for matches", true, false);
                          new Thread(new Runnable() {
                                  public void run() {
                                      //do work
                                  //.....
                  
                                  finishedHandler.sendEmptyMessage();
                                  }
                              }).start();
                      }
                  }
                  
                  private Handler finishedHandler = new Handler() {
                      @Override public void handleMessage(Message msg) {
                          pd.dismiss();
                          //start new activity
                      }
                  }
                  

                  这篇关于Android - 创建进度对话框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Lucene Porter Stemmer not public(Lucene Porter Stemmer 未公开)
                  How to index pdf, ppt, xl files in lucene (java based or python or php any of these is fine)?(如何在 lucene 中索引 pdf、ppt、xl 文件(基于 java 或 python 或 php 中的任何一个都可以)?)
                  KeywordAnalyzer and LowerCaseFilter/LowerCaseTokenizer(KeywordAnalyzer 和 LowerCaseFilter/LowerCaseTokenizer)
                  How to search between dates (Hibernate Search)?(如何在日期之间搜索(休眠搜索)?)
                  How to get positions from a document term vector in Lucene?(如何从 Lucene 中的文档术语向量中获取位置?)
                  Java Lucene 4.5 how to search by case insensitive(Java Lucene 4.5如何按不区分大小写进行搜索)

                  <small id='0S5qN'></small><noframes id='0S5qN'>

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

                      • <bdo id='0S5qN'></bdo><ul id='0S5qN'></ul>

                            <tfoot id='0S5qN'></tfoot><legend id='0S5qN'><style id='0S5qN'><dir id='0S5qN'><q id='0S5qN'></q></dir></style></legend>
                              <tbody id='0S5qN'></tbody>