What would be the best way to make somthing looking like this:

enter image description here

The text on it needs to be customizable, not only numbers, some strings too, depending on context.

From what I see it:

  1. Create a custom View and within onDraw perform all the calculations and text alignment.
  2. Style or extend a horizontal ProgressBar.

What do you think ?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Extend ProgressBar ... override onDraw()

The primary reason for this is that all of the primary methods are already there and the first rule of object-orientated programming is code-reuse means don't reinvent the wheel.

link|improve this answer
1  
Perhaps this method crossed with a Custom view including the overridden ProgressBar for your text & labels and what-nots. – Graeme Jan 19 at 15:55
1  
Yes, this answer is the best. After reading it, did a bit of search and found this: colintmiller.com/2010/10/… – Alin Jan 19 at 16:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.