我必须从不同的请求加载同一活动中的数据
请求1将加载一些数据,请求2将从另一个url 加载数据
现在我称之为顺序
request1.run()request2.run()
现在的问题是,我需要在他们之前显示对话框,并在所有数据完成后隐藏它们
有人能告诉我最好的方法是什么吗?
AsyncTask正在工作:
doInBackground:执行长时间运行操作的代码使用此方法。当单击按钮执行onClick方法时,它调用接受参数的execute方法,并使用传递的参数自动调用doInBackground方法。
onPostExecute:此方法在doInBackground方法完成处理后调用。doInBackground的结果传递到此方法。
onPreExecute:在调用doInBackground方法之前调用此方法。
类登录扩展AsyncTask{
private final static String TAG = "LoginActivity.Login";
@Override
protected void onPreExecute()
{
super.onPreExecute();
Log.d(TAG, "Executando onPreExecute Login");
//inicia diálogo de progresso, mostranto processamento com servidor.
progressDialog = ProgressDialog.show(LoginActivity.this, "Autenticando", "Contactando o servidor, por favor, aguarde alguns instantes.", true, false);
}
@SuppressWarnings("unchecked")
@Override
protected String doInBackground(Object... parametros) {
Log.d(TAG, "Executando doInBackground Login");
Object[] params = parametros;
HttpClient httpClient = (HttpClient) params[0];
List<NameValuePair> listaParametros = (List<NameValuePair>) params[1];
String result = null;
try{
result = HttpProxy.httpPost(AnototudoMetadata.URL_AUTENTICACAO, httpClient, listaParametros);
}catch (IOException e) {
Log.e(TAG, "IOException, Sem conectividade com o servidor do Anototudo! " + e.getMessage());
e.printStackTrace();
return result;
}
return result;
}
@Override
protected void onPostExecute(String result)
{
super.onPostExecute(result);
if (result == null || result.equals("")) {
progressDialog.dismiss();
Alerta
.popupAlertaComBotaoOK(
"Dados incorretos",
"Os dados informados não foram encontrados no Sistema! Informe novamente ou cadastre-se antes pela internet.",
LoginActivity.this);
return;
}
Log.d(TAG, "Login passou persistindo info de login local no device");
ContentValues contentValues = new ContentValues();
contentValues.put(AnototudoMetadata.LOGIN_EMAIL, sLogin);
contentValues.put(AnototudoMetadata.LOGIN_SENHA, sSenha);
contentValues.put(AnototudoMetadata.LOGIN_SENHA_GERADA, result);
LoginDB loginDB = new LoginDB();
loginDB.addLogin(LoginActivity.this, contentValues);
Log.d(TAG, "Persistiu info de login no device, redirecionando para menu principal do Anototudo");
Log.d(TAG, "O retorno da chamada foi ==>> " + result);
// tudo ok chama menu principal
Log.d(TAG, "Device foi corretametne autenticado, chamando tela do menu principal do Anototudo.");
String actionName = "br.com.anototudo.intent.action.MainMenuView";
Intent intent = new Intent(actionName);
LoginActivity.this.startActivity(intent);
progressDialog.dismiss();
}
}
尝试使用异步任务,类似
private class RunRequestsTasks extends AsyncTask<Void,Void,Void>{
private Context tContext;
@Override
protected void onPreExecute(){
//Build dialog here
}
@Override
protected void doInBackground(Void... voids) {
request1.run();
request2.run()
return null;
}
@Override
protected void onPostExecute(Void voidRet){
//Dismiss dialog here
}
}
然而,如果没有更多的信息,很难给出一个更具针对性的答案。