How to change ProgressBar style in ListFragment in compatibility library?

Large default ListFragment in ListFragment

 ProgressBar progress = new ProgressBar(context, null, android.R.attr.progressBarStyleLarge); 

Is this the only way to change it with reflection?

+6
source share
1 answer

I believe you should subclass it and override onCreate() with your custom layout. I did not do this with the ProgressBar , but with the way I set up the ProgressDialog .

+1
source

Source: https://habr.com/ru/post/898156/


All Articles