2

I need some help about progress bar customization.

I want any idea about how to do like these 2 pictures:

Click here to view pictures

1.On left-side picture, there is a red vertical line on the progress bar.

2.On Right-Side picture, there is an arrow picture with vertical line on the progress bar. Also, there are many colors on one progress bar.

What are classes ,methods or whatever idea should be implement for drawing these?

Thanks in advance :)

P.S. Picture Source, Left: My Diet Diary Calorie Counter, Right: Calorie Counter,Viaden Gaming Limited

Coco Tan
  • 47
  • 1
  • 8
  • Have you tried looking: http://stackoverflow.com/questions/2819778/custom-drawable-for-progressbar-progressdialog and here: http://stackoverflow.com/questions/4581812/custom-progress-bar-in-android maybe those give you ideas. – Raykud Jun 18 '12 at 18:15

1 Answers1

4

The only way I figure out is to extend ProgressBar with a custom class of your own and override the ondraw method to draw what you want in your progress bar.

Examples here and here.

Community
  • 1
  • 1
Snicolas
  • 37,840
  • 15
  • 114
  • 173