我正在使用代码在asyn
任务中显示带有旋转轮的进度条,如下所示
class Startsyntask extends AsyncTask<Void, Void, Void>
{
ProgressDialog dialog = new ProgressDialog(Myclass.this);
protected void onPreExecute()
{
dialog.setMessage("Please wait...");
dialog.setIndeterminate(true);
dialog.setCancelable(false);
dialog.show();
}
@Override
protected Void doInBackground(Void... arg0)
{
// my code to download the contents from the Server ( approx 230 mb in size)
return null;
}
protected void onPostExecute(Void unused)
{
dialog.dismiss();
}
}
但微调器只显示一段时间,微调器冻结。我不知道我哪里出错了。我无法猜测进度是否完成。我已经搜索了许多相关的线程,但我还没有得到解决方案。
提前致谢 。