Android: How to Create a Modal Progress “Wheel” Overlay?

后端 未结 5 863
甜味超标
甜味超标 2021-02-15 17:58

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

5条回答
  •  再見小時候
    2021-02-15 18:32

    you just add .setCanceledOnTouchOutside(false); to your ProgressDialog.

     ProgressDialog dialog = new ProgressDialog(getApplicationContext());
     dialog.setMessage("your message...");
     dialog.setIndeterminate(true);
     dialog.setCanceledOnTouchOutside(false);
     dialog.show();
    

提交回复
热议问题