How can I change the style of a ProgressBar to small?

Janusz picture Janusz · Aug 17, 2010 · Viewed 45.4k times · Source

I have some difficulties finding the correct way to specify that a progress bar should have the small indefinite style.

I would be glad if somebody could provide an example for me and others that do a quick search for this information.

Answer

Janusz picture Janusz · Aug 17, 2010

The solution is to change the style to

<ProgressBar
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   style="?android:attr/progressBarStyleSmall" />