我希望我的ProgressDialog
显示一个循环progressbar
,但它永远不会显示。我的代码有什么问题?
我正在使用.setProgressStyle(ProgressDialog.STYLE_SPINNER);
这是完整的代码:
pDialog = new ProgressDialog(NSOMCK.this);
pDialog.setMessage("Loading..");
pDialog.setIndeterminate(false);
pDialog.setCancelable(false);// this crash due to going back before the announcements load
pDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
pDialog.show();