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?
ProgressDialog
Simple coding in your activity like below:
activity
private ProgressDialog dialog = new ProgressDialog(YourActivity.this); dialog.setMessage("please wait..."); dialog.show(); dialog.dismiss();