Hi all,
I was wondering what is the easiest way to change the height of a ProgressBar in Android?
Thanks,
Tomek
Hi all,
I was wondering what is the easiest way to change the height of a ProgressBar in Android?
Thanks,
Tomek
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.