Android 中的计时器倒计时
我已经从 android api demo 实现了一个简单的计时器。现在是否可以在计时器中显示倒计时,例如将开始设置为 01:23,然后单击开始按钮,它将更改为 01:22,然后 01:21 等等......直到 00:00。如果有人以前这样做过,请告诉我。 http://developer.android .com/resources/samples/ApiDemos/src/com/example/android/apis/view/ChronometerDemo.html
谢谢。
I have implemented a simple chronometer from the android api demo. Now is it possible to show the countdown in chronometer like setting the start to 01:23 then onClick of start button, it will change to 01:22 then 01:21 and so on... till 00:00. Please let me know if anyone did it before.
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/ChronometerDemo.html
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有兴趣的可以看一下 CountDownTimer 类。
例子:
For those who are interested, take a look at CountDownTimer class.
Example:
这是我的班级时钟,用于显示时钟和日期。将其更改为倒计时。
Here is my class Clock for clock and date showing. Change it for count down.