How to show progress dialog in Android?

后端 未结 16 2919
予麋鹿
予麋鹿 2020-11-28 07:40

I want to show ProgressDialog when I click on Login button and it takes time to move to another page. How can I do this?

16条回答
  •  温柔的废话
    2020-11-28 08:36

    Simple coding in your activity like below:

    private ProgressDialog dialog = new ProgressDialog(YourActivity.this);    
    dialog.setMessage("please wait...");
    dialog.show();
    dialog.dismiss();
    

提交回复
热议问题