Quantcast
Channel: New board topics in SmartBear Community
Viewing all articles
Browse latest Browse all 21061

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

$
0
0

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


Viewing all articles
Browse latest Browse all 21061

Trending Articles