我在Android上工作。将有一个菜单,当访问时,从服务器(500+)请求相当大的用户列表,大约需要5秒钟。在此期间,应用程序冻结。我如何显示进度hud(如MBProgressHud),用户意识到某些事情正在发生,并且在完成之前无法触及它。
MBProgressHud:
答案 0 :(得分:6)
使用AsyncTask:
public class MyAsyncTask extends AsyncTask<Void, Void, Result>{
private Activity activity;
private ProgressDialog progressDialog;
public MyAsyncTask(Activity activity) {
super();
this.activity = activity;
}
@Override
protected void onPreExecute() {
super.onPreExecute();
progressDialog = ProgressDialog.show(activity, "Loading", "Loading", true);
}
@Override
protected Result doInBackground(Void... v) {
//do your stuff here
return null;
}
@Override
protected void onPostExecute(Result result) {
progressDialog.dismiss();
Toast.makeText(activity.getApplicationContext(), "Finished.",
Toast.LENGTH_LONG).show();
}
}
从活动中调用它:
MyAsyncTask task = new AsyncTask(myActivity.this);
task.execute();
答案 1 :(得分:0)
您需要使用AsyncTask
和ProgressDialog
来实现此功能。它将在单独的线程上卸载繁重的(Web调用),将UI线程设置为不受ANR(应用程序无响应)的影响。
有关详细信息,请阅读this answer。