我想在我的视图上显示一个模态进度“轮”覆盖。
ProgressDialog 接近,但我不想要对话框背景或边框。
我尝试设置对话框窗口的背景可绘制:
this.progressDialog = new ProgressDialog(Main.this);
this.progressDialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));
this.progressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
this.progressDialog.setCancelable(false);
this.progressDialog.setIndeterminate(true);
this.progressDialog.show();
但无济于事(即看起来仍然与没有 ...setBackgroundDrawable 代码相同)。