Todd-Davies / ProgressWheel

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

Set attribute values programnatically won't change the visual of the progress wheel. #44

Closed boyserk84 closed 9 years ago

boyserk84 commented 10 years ago

For example, if I call setBarColor( Color.parseColor("#e3a712"); in code, the bar color of the progress wheel won't visually change. The fix is quite simple, at least from the way I see it. It is basically due to barPaint object in ProgressWheel.java hasn't been updated with the new color value when setBarColor() is called.

Todd-Davies commented 10 years ago

If you submit a pull request, I'll check it over and merge it.

Cheers

boyserk84 commented 10 years ago

Here is my pull request: https://github.com/Todd-Davies/ProgressWheel/pull/45 Thanks