How to show progress dialog in Android?

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

    ProgressDialog pd = new ProgressDialog(yourActivity.this);
    pd.setMessage("loading");
    pd.show();
    

    And that's all you need.

提交回复
热议问题