views:

179

answers:

1

Hi all,

I was wondering what is the easiest way to change the height of a ProgressBar in Android?

Thanks,

Tomek

+4  A: 

If your progress bar is defined in the XML layout, it looks like you define its height like so:

<ProgressBar  
android:minHeight="20dip" 
android:maxHeight="20dip"/>

However I'm just making a guess from this article.

Jweede