Using of Progress Dialog progress bar are used to show progress of task e.g. downloading file,analyzing status of work etc. //ProgressDialog progress = new ProgressDialog(this); Now you can set some properties of this dialog. [code lang=”js”] progressDialog = new ProgressDialog(this); progressDialog.setMessage("Downloading…"); progressDialog.setTitle("Your Title"); progressDialog.setCancelable(true); progressDialog.setIndeterminate(true); progressDialog.show(); [/code] activity_main.xml [code lang=”js”] […]