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);