0

I'm using the default Android's progress bar :

style="?android:attr/progressBarStyleHorizontal"

It is displayed like this :

enter image description here

I just want to make it a bit bigger (raise its height) with minimal actions. Is it possible? Tried doing minHeight and maxHeight, didn't help..

Thank you.

BVtp
  • 2,308
  • 2
  • 29
  • 68

1 Answers1

1
<style name="CustomProgressBarHorizontal" parent="android:Widget.ProgressBar.Horizontal">
      <item name="android:progressDrawable">@drawable/custom_progress_bar_horizontal</item>
      <item name="android:minHeight">10dip</item>
      <item name="android:maxHeight">20dip</item>
</style>

source Click Here

Community
  • 1
  • 1
Bala Saikrupa Puram
  • 721
  • 1
  • 7
  • 28