How to show progress dialog in Android?

后端 未结 16 2892
予麋鹿
予麋鹿 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:21

    ProgressDialog dialog = 
       ProgressDialog.show(yourActivity.this, "", "Please Wait...");
    

提交回复
热议问题