Skip to content Skip to sidebar Skip to footer

Android: Best Way To Create A Custom Shaped Progressbar

I would like to create a custom shaped progressbar, which would change color according to its progress (but this is almost a different question..). So what would be the best way t

Solution 1:

To have all possibilities you should create a custom class derived from progressbar and completely override the onDraw() Method. to draw the Arch on the side you can use canvas.drawArc() and to change the color of the bar you can simply adjust the Paint Color.


Post a Comment for "Android: Best Way To Create A Custom Shaped Progressbar"