我尝试打开第二个活动,这需要一些时间从主要活动首先从互联网加载数据,在此期间,我的屏幕将全黑,所以我决定使用进度对话框显示“嘿,我还活着,不要关我!” 一切都很顺利,但唯一的问题是微调器没有旋转。这是我的代码:单击按钮后: new YourAsyncTask().execute();
public class YourAsyncTask extends AsyncTask<Void, Void, Void> {
private ProgressDialog myDialog;
@Override
protected void onPreExecute() {
//show your dialog here
myDialog = ProgressDialog.show(ScrollingTab.this, "loading..", "please wait..", true, true);
myDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
}
@Override
protected Void doInBackground(Void... params) {
//update your DB - it will run in a different thread
startActivity(new Intent("com.android.ricky.RESULT_DETAIL"));
return null;
}
@Override
protected void onPostExecute(Void result) {
//hide your dialog here
myDialog.dismiss();
}
}
我试图删除“ startActivity(new Intent("com.android.ricky.RESULT_DETAIL"));” 和“myDialog.dismiss();” 同时,旋转器正在旋转><请帮助,非常感谢!