I need to show the secondary progress of a ProgressDialog on Android, but it shows only the first progressbar in the dialog.
This is the code I use:
progress = new ProgressDialog(this);
progress.setIndeterminate(false);
progress.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
progress.setProgress(25);
progress.setSecondaryProgress(10);
progress.show();