I'm making a quiz for Android and I want a limited time to answer every question. So I want to display a ProgressBar under the answers that counts down from, for example, 5 to 0 (seconds). And when it reaches zero I want to do some stuff. I have the quiz and everything working, I just want to add the ProgressBar.
Thanks in advance!
No need for XML declaration
you can use countdown timer in android .
Here is one Example you can Refer Click Here
you can use below ProgressBar in your Activity.
Use
CountDownTimer
Like Below code in your Activity.You could use an
ObjectAnimator
to animate the progress of theProgressBar
: