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
code
The most simple way of changing the foreground and background colour of a progress bar is
just add
android:progressTint="#82e9de" //for foreground colour android:progressBackgroundTint="#82e9de" //for background colour