Forum Discussion

crina's avatar
crina
Occasional Contributor
9 years ago

Dialogs which are called from onResume() function are not identified in the Object Browser

Why it cannot be mapped and are not displayed in Object Browser dialogs or progress bars which are called in the onResume() in android application? 

this is how progress dialogs is created in onResume():

 

progress = new ProgressDialog(this);
progress.setMessage(this.getString(R.string.vciDetectionMessage));
progress.setProgressStyle(ProgressDialog.STYLE_SPINNER);
progress.setIndeterminate(true);
progress.setCancelable(false);

No RepliesBe the first to reply