Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change ProgressBar style in ListFragment under compatibility library?

The progress bar is large one by default in ListFragment

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

Is the only way to change it using reflection?

like image 662
bitbybit Avatar asked Sep 27 '11 16:09

bitbybit


1 Answers

I believe you should be able to subclass it and override the onCreate() with your custom layout. I haven't done it with the ProgressBar, but that's how I customized the ProgressDialog.

like image 192
ymotov Avatar answered Nov 19 '22 18:11

ymotov