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 (not XML)?
|
|
I'm sorry that it's not the answer, but what's driving the requirement setting it from code ?
And
|
|||||||||||||||||
|
|
For my indeterminate progressbar (spinner) I just set a color filter on the drawable. Works great and just one line. Example where setting color to red:
|
||||
|
|
|
as per some of the suggestions, you CAN specify a shape and clipdrawable with a colour, then set it. I have this working programatically. This is how I do it.. First make sure you import the drawable library..
Then use the code similar to below;
|
|||||||||||||||
|
|
Hit the same problem while working on modifying the look/feel of the default progress bar. Here is some more info that will hopefully help people :)
|
|||
|
|
|
For a horizontal ProgressBar, you can use a ColorFilter, too, like this:
|
|||||||
|
|
This worked for me and is an easy solution.
|
||||
|
|
This helped me to set a custom color to progressbar through code. Hope it helps |
|||
|
|
|
Posted to add info about PaulieG's answer, since ateiob asked me to explain something... Unfortunately when I proposed an edit to the solution, it was a long time ago, and I can't remember all the details. I can say that there is (or at least was, at the time of writing when I looked at that current version of Android source code) a bug/issue/optimisation in the
After calling This means you need to set the progress, and redraw it. But if you just set the progress to a preserved value, it will do nothing. You must set it to 0 first, then to the "old" value again, and the bar will redraw. So to summarise:
Below is a method I have that does this - I hope it is useful. I'm not 100% sure why I called it from
As far as HappyEngineer's solution, I think it was a similar workaround, to manually set the "progress" offset (I do not remember exactly). In either case, the above code should work for you. Sorry if I can't remember all of the details - that is why I attempted to edit the answer. Hope this helps... |
||||
|
|
|
For a horizontal style ProgressBar I use:
An example call would be:
If you don't need the 'secondary progress' simply set value2 to value1. |
||||
|
|

