Try entering the code
ProgressDialog to show:
ProgressDialog mDialog = new ProgressDialog(getApplicationContext()); mDialog.setMessage("Loading..."); mDialog.setCancelable(false); mDialog.show();
After canceling the ProgressDialog below code:
mdialog.dismiss();
Dinesh
source share