Hi,
i would like to show a modal progress "wheel" overlay on my view.
The ProgressDialog comes closs, but i do not want the dialog background or border.
i tried setting the background drawable of the dialog window:
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();
but to no avail (i.e. still looks the same as without the ...setBackgroundDrawable code).
Any advice please? TIA!