我试图在 onPreExecute() 开始ProgressDialog
时出现,在中做一些事情,然后在中关闭。AsyncTask
doInBackground()
ProgressDialog
onPostExecute()
在我看来,这应该是简单而直接的,但我一定做错了什么。
每当我Button
在我的应用程序中单击更新并AsyncTask
运行应用程序时,应用程序就会冻结,稍等片刻,然后ProgressDialog
立即出现并消失,工作doInBackground()
完成。我不明白为什么onPreExecute()
要追赶doInBackground()
,但这似乎正是这里发生的事情。这是代码:
public class UpdateStats extends AsyncTask<CatchAPI, Void, String[]> {
private ProgressDialog pdia;
private Context context;
private APIParser parser = new APIParser();
public UpdateStats(Context contexts) {
context = contexts;
}
@Override
protected void onPreExecute() {
pdia = new ProgressDialog(context);
pdia.setMessage("Loading...");
pdia.show();
super.onPreExecute();
}
@Override
protected String[] doInBackground(CatchAPI... api) {
String apiOutput = api[0].returnAPI();
return new String[] {
parser.getPoolName(apiOutput),
parser.getHashRate(apiOutput),
parser.getWorkers(apiOutput),
parser.getSharesThisRound(apiOutput)
};
}
@Override
protected void onPostExecute(String[] result) {
pdia.dismiss();
super.onPostExecute(result);
}
}
以及 MainActivity 中的 onClickListener:
updateButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String[] text = null;
UpdateStats updater = new UpdateStats(context);
try {
text = updater.execute(api).get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
poolNameTV.setText(text[0]);
hashRateTV.setText(text[1]);
workersTV.setText(text[2]);
sharesThisRoundTV.setText(text[3]);
}
});