Android: How do I change the height of a ProgressBar?

后端 未结 4 1829
滥情空心
滥情空心 2020-12-30 03:45

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

Thanks,

Tomek

4条回答
  •  执笔经年
    2020-12-30 04:19

    Can use this code :

    mProgressBar.setScaleY(3f);
    

    Or use custom style

    values->styles.xml

    
    

    Then in your ProgressBar add:

    style="@style/tallerBarStyle"
    

提交回复
热议问题