I would like to show a modal progress \"wheel\" overlay on my view.
The ProgressDialog comes close, but I do not want the dialog background or border.
I tried se
you just add .setCanceledOnTouchOutside(false); to your ProgressDialog.
.setCanceledOnTouchOutside(false);
ProgressDialog dialog = new ProgressDialog(getApplicationContext()); dialog.setMessage("your message..."); dialog.setIndeterminate(true); dialog.setCanceledOnTouchOutside(false); dialog.show();