I am using circular progress bar on Android. I wish to change the color of this. I am using
"?android:attr/progressBarStyleLargeInverse"
style. So how to change the color of progress bar.
How to custom the style? Furthermore, what is the definition of the style?
To supplement Muhamed Riyas M's top voted answer:
Faster rotation
Thinner ring
Light white
To customize circular ProgressBar we need to create a indeterminateDrawable to show custom progress bar
We need to include drawable in progressbar just as below:
For all those wondering how to increase the speed of custom progress
You can do this with a custom dialog pretty easily, reusing the xml from other answers:
Just do this:
check this answer out:
for me, these two lines had to be there for it to work and change the color:
PS: but its only available from android 21
android:indeterminateTint="@color/progressbar"