I have 4 Activities in my android app. 1st leads to 2nd , 2nd to 3rd and so on.Each activity fetch some data from net.It takes some time in it so i have added a progress dialog box to let users know about it. Now the problem is that when i press the back button the progress dialog is still there. Where should i write the dismiss() function to dismiss that progress dialog box?
PS:It dismisses when i press back button twice. Should i write dismiss on onStart(), onResume() or where ???
Here is the code :
private void onFileClick(Option option) {
ProgressDialog progressDialog = new ProgressDialog(this);
progressDialog.setProgress(10);
progressDialog.setMax(100);
progressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
progressDialog.setMessage("Loading Data...");
progressDialog.show();
Intent i;
i = new Intent(this, ChannelVideoListActivity.class);
startActivity(i);
progressDialog.dismiss();
}
