I have a ProgressBar style in style.xml. When I create the layout, put a ProgressBar there and set the style as:
style="@style/ProgressBarStyle"
set the layout to the dialog, and everything is in order.
Another way to create a dialog view is programmatically. So for ProgressBar I have the following code:
new ProgressBar(context, null, R.style.ProgressBarStyle);
But in this way there is nothing instead of the ProgressBar.
PS I do not forget to add a ProgressBar for viewing, which I set as a dialog box.
android android styles
Mcbodik
source share