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 Way :
ProgressDialog pDialog = new ProgressDialog(MainActivity.this); //Your Activity.this pDialog.setMessage("Loading...!"); pDialog.setCancelable(false); pDialog.show();