如何使用ProgressDialog和Async Task同时获取Method

时间:2011-11-09 07:20:04

标签: android android-asynctask progressdialog

我有通用的异步任务类,它从服务器获取响应。我通过使用get方法接收这些响应。现在,当我使用get方法时,我知道UI线程是块,bcoz我的进度Dialog没有按时显示。

现在有人可以告诉我替代方法吗? (在每种情况下,我都需要将响应发送回执行调用的活动,因此打开新活动对我没有帮助)

代码: AsyncTask类

 public class GetDataFromNetwork extends AsyncTask<Void,String,Object> {

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


 protected Object doInBackground(Void... params) {
    Object result = null;
    try {
        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER10);
        new MarshalBase64().register(envelope);
        envelope.dotNet = true;
        envelope.setOutputSoapObject(request);
        AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(ipAddress + webService);
        System.setProperty("http.keepAlive", "true");
        try {
            androidHttpTransport.call(nameSpace + methodName, envelope);
        } catch (Exception e) {

            e.printStackTrace();
            publishProgress(e.getMessage());
        }
        androidHttpTransport.debug = true;
        System.out.println("response: " + androidHttpTransport.requestDump);
        result = envelope.getResponse();
        if(result!=null){
            System.out.println("GetDataFromNetwork.doInBackground() result expection---------"+result);
        }
    } catch (Exception e) {
        System.out.println("GetDataFromNetwork.doInBackground()-------- Errors");
        e.printStackTrace();

    }

    return result;
}

protected void onPostExecute(Object result) {
    super.onPostExecute(result);
    progressDialog.dismiss();
}

代码:活动

GetDataFromNetwork request = new GetDataFromNetwork(
                                        this,
                                        ProgressDialog.STYLE_SPINNER,
                                        getResources().getText(R.string.autenticate).toString());
response= (SoapObject)request.execute().get();

4 个答案:

答案 0 :(得分:10)

我在我的应用程序中一直在做这样的事情,我找到的最简单的方法是创建“Callback”接口并将其作为参数传递给我的“AsyncTask”。你执行“doInBackground()”处理,完成后从onPostExecute调用“Callback”实例,将“result”对象作为参数传递。

以下是它的简化版本。

回调接口示例:

package example.app;

public interface Callback {

        void run(Object result);
}

使用上面的Callback接口的AsyncTask示例:

public class GetDataFromNetwork extends AsyncTask<Void,String,Object> {
  Callback callback;
  public GetDataFromNetwork(Callback callback){
     this.callback = callback;
  }

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


   protected Object doInBackground(Void... params) {
      Object result = null;
      // do your stuff here
      return result;
  }

  protected void onPostExecute(Object result) {
     callback.run(result);
     progressDialog.dismiss();
  }

}

如何在您的应用中使用上述类的示例:

class Example {
   public onCreate(Bundle savedInstanceState){
      //initialize

      GetDataFromNetwork request = new GetDataFromNetwork(new Callback(){
                     public void run(Object result){
                             //do something here with the result
       }});
       request.execute();      
   }
}

答案 1 :(得分:1)

像yorkw所说,问题是你让UI线程等待这段代码的响应:

response= (SoapObject)request.execute().get();

正如AsyncTask.get()的文档所说:

  

如果需要等待计算完成,然后检索   结果。

由于UI线程等待响应,因此无法显示进度对话框。解决方案是将处理响应的代码移动到onPostExecute()方法:

protected void onPostExecute(Object result) {
    super.onPostExecute(result);

    // Now we have the response, dismiss the dialog and handle the response
    progressDialog.dismiss();
    response = (SoapObject) result;
}

在获得响应后,将调用此方法。同时,UI线程可以负责显示进度对话框。

答案 2 :(得分:0)

为什么不创建另一个用于放置响应的类,在那里你将获得get和set方法。然后在onPostExecute中用set方法编写它并调用一个处理程序,你可以做任何你想做的事......这只是一个想法...... :)

答案 3 :(得分:0)

如果您使用的是AsyncTask,则不会阻止您的UI线程。您是否在doInBackground()内下载了数据?因为那是你应该去做的地方。