2

我有一个要执行以下操作的应用程序:

  1. 显示一个带有按钮和 TextView 的活动。
  2. 用户单击按钮,应用程序会显示一个进度对话框。
  3. 应用程序调用 Web 服务来获取列表。
  4. 进度对话框被隐藏,并出现一个列表选择对话框以显示检索到的列表。
  5. 用户选择列表中的一项。
  6. 项目显示在 TextView 中。

问题是会发生这种情况:

  1. 显示一个带有按钮和 TextView 的活动。
  2. 用户单击按钮和按钮状态更改为选中。
  3. 几秒钟后,列表选择对话框出现,显示检索到的列表。
  4. 用户选择列表中的一项。
  5. 进度对话框显示几秒钟,然后隐藏。
  6. 项目显示在 TextView 中。

Web 服务在 AsyncTask 中执行,进度对话框显示在 onPreExecute() 方法中,并在 onPostExecute() 方法中关闭:

public class WebService extends AsyncTask<Void, Void, Boolean> {

  public void onPreExecute() {
    _progressDialog = ProgressDialog.show(_context, "", message);
  }

  protected Boolean doInBackground(Void... params) {
    try {
      // Execute web service
    }
    catch (Exception e) {
      e.printStackTrace();
    }

    return true;
  }

  protected void onPostExecute(Boolean result) {
    _progressDialog.hide();
  }
}

执行 Web 服务并显示对话框的代码:

WebService ws= new WebService();
ws.execute();

// Web service saves retrieved list in local db

// Retrieve list from local db

AlertDialog.Builder db = new AlertDialog.Builder(context);
db.setTitle("Select an Item");
ArrayAdapter<String> listAdapter = new ArrayAdapter<String>(context,
        android.R.layout.simple_selectable_list_item, list);
db.setAdapter(listAdapter, null);
db.show();

我是否需要在代码中添加一些内容以确保进度对话框显示在列表选择对话框之前?

先感谢您。

4

2 回答 2

0

我有同样的问题。我试图在任务之前显示进度对话框,使用 post runnable,使用 runOnUiTask 可运行。没有什么能做到这一点。
对话框总是在工作完成后出现,或者根本不出现。

我刚刚找到并且证明对我有用的解决方案是将doInBackground代码放入try{}catch{}块中。

不要问我为什么有效。我的结论是,在某些情况下阻止消息处理程序发送消息的 Android 操作系统设计存在问题。并且以某种方式 try/catch 给处理程序一个刹车并发送消息。

注意:即使我的代码没有抛出任何异常,我也使用了 try/catch 块,只是使用了

try {
     // code
}
catch( Exception e) { }
于 2012-06-10T12:54:28.430 回答
0

这是我的做法:

public OnClickListener loginListener = new OnClickListener() {
    public void onClick(View v) {
        ProgressDialog progressDialog = new ProgressDialog(activity);
        progressDialog.setMessage("Logging in...");
        LoginTask loginTask = new LoginTask(activity, progressDialog, loginLayout, loggedInLayout);
        loginTask.execute();
    }
};

异步任务:

protected void onPreExecute() {
    progressDialog.show();
}

protected void onPostExecute(Integer responseCode) {
if (responseCode == 1) {
        progressDialog.dismiss();
        int duration = Toast.LENGTH_SHORT;
        Toast toast = Toast.makeText(activity.getApplicationContext(), "Logged in.", duration);
        toast.show();
        activity.bar.getTabAt(0).setText(dbHandler.getUserDetails().get("email"));

因此,我实际上在主要活动中创建了 ProgressDialog,并在我什至声明/执行任务之前设置了它的消息。然后,任务显示和关闭(而不是隐藏)对话框。

让我知道这个是否奏效!

于 2012-06-05T15:59:41.043 回答