如果已调用的应用程序已完成,返回值或对 Aysnc 任务的调用会发生什么情况。
假设我在 Aysnc 任务中调用了一个网络操作,而我调用它的 UI 线程已经完成了操作。
我的目标是保存 N/W 通话中收到的数据,以便下次我需要重新通话?
下面是在 doInBackground() 中我发出 SOAP 请求的代码片段,当请求打开时,调用 Aync 任务的主 UI 不知何故死亡/完成。我的回复会怎样?如何保存响应以供将来使用。
Code:
class SOAPCallAyncTask1 extends AsyncTask<String, String, String> {
ProgressDialog pd = null;
@Override
protected void onPreExecute() {
super.onPreExecute();
pd = new ProgressDialog(SoapMainActivity.this);
pd.setMessage("Please wait...");
pd.setCancelable(false);
pd.show();
}
@Override
protected String doInBackground(String... params) {
String theResult = "";
byte[] result = null;
try {
result = callSOAPServer();
theResult = new String(result);
Log.d("R-Doit in backgound", theResult);
}
catch (Exception e) {
e.printStackTrace();
}
return theResult;
}
@Override
protected void onPostExecute(String theResult) {
super.onPostExecute(theResult);
pd.dismiss();
Log.d("R-Result", theResult);
}
}