How to change default color of progress bar?

后端 未结 14 1897
粉色の甜心
粉色の甜心 2020-12-02 15:53

I am using a circular ProgressBar in my Activty.My Problem is this it is not visible properly on my page because my page\'s BG color is same as ProgressBar .So

14条回答
  •  抹茶落季
    2020-12-02 16:06

    for me, these two lines had to be there for it to work and change the color:

    android:indeterminateTint="@color/yourColor"
    android:indeterminateTintMode="src_in"
    

    PS: but its only available from android 21

提交回复
热议问题