How to change progress bar's progress color in Android

前端 未结 30 1993
情话喂你
情话喂你 2020-11-22 07:49

I\'m using an horizontal progress bar in my Android application, and I want to change its progress color (which is Yellow by default). How can I do it using code

30条回答
  •  一生所求
    2020-11-22 08:18

    This is not programmatically but I think it could help a lot of people anyway.
    I tried a lot and the most efficient way was to add this lines to my ProgressBar in the .xml File:

                android:indeterminate="true"
                android:indeterminateTintMode="src_atop"
                android:indeterminateTint="@color/secondary"
    

    So in the end this code did it for me:

    
    

    This solution works for API 21+

提交回复
热议问题