This is the good way to use progress dialog in Android
Code coloring by http://hilite.me
Source from http://stackoverflow.com/questions/10446125/how-to-show-progress-dialog-in-android
//example code on using Progress Dialog in Android private class YourAsyncTask extends AsyncTask<Void, Void, Void> { ProgressDialog dialog = new ProgressDialog(IncidentFormActivity.this); @Override protected void onPreExecute() { //set message of the dialog dialog.setMessage("Loading..."); //show dialog dialog.show(); super.onPreExecute(); } protected Void doInBackground(Void... args) { // do background work here return null; } protected void onPostExecute(Void result) { // do UI work here if(dialog != null && dialog.isShowing()){ dialog.dismiss() } } }
Comments
Post a Comment