When is the progress dialog not showing up in android? I want to know the circumstances when this can happen:
in my case, the progress dialog was not shown in this case:
func{
progressdialog.show();
....
.....
anotherfunction();
listview.setAdapter();
progressdialog.dismiss();
}
what is the general rule of thumb with dialog boxes?
thank you in advance.
EDIT
when the .show () command is executed, an execution dialog should be displayed. But when otherfucntion () is called, does the previous progressdialog command stop?
source
share