Todd-Davies / ProgressWheel

A progress wheel for android, intended for use instead of the standard progress bar.
MIT License
2.64k stars 709 forks source link

Change bar color dynamically #40

Closed guyzk closed 10 years ago

guyzk commented 10 years ago

Hi there,

Is there any way to change the bar color in the middle of the progress? I am using a timer and i want to change the color of the bar every tick depending on a certain algorithm

guyzk commented 10 years ago

Eventually I've added another method called

public void updateBarColor(int barColor){
    this.barColor = barColor;
    setupPaints();
    invalidate();
}

which evidently updates the bar color in progress.