1

Progress Bar

I want a square progressbar like in above images, which should change color at certain condition. Exactly like zynga poker.
lets take total duration is 6 seconds.

2sec-green

2sec-yellow

2sec-red

As this

ManishSB
  • 767
  • 9
  • 27
Biswatma
  • 107
  • 4
  • 17

1 Answers1

1

You can use canvas for making a custom view like this. For more info: http://developer.android.com/reference/android/graphics/Canvas.html

Example Android canvas draw rectangle

Logic You need to draw 4 lines, then start erasing them using timer. After each line is erased completely, change color of other lines, and so on.

Community
  • 1
  • 1
berserk
  • 2,690
  • 3
  • 32
  • 63