我想显示从 60 到 1 所经过的秒数
我想显示一个文本视图,其经过的秒数从 60 到 1。
我应该如何获取处理程序事件?
time = GetTime.Showtime();
elapsetime.setText(time + " Secs");
I want to show a text view with elapsed seconds from 60 to 1.
How should I take handler event?
time = GetTime.Showtime();
elapsetime.setText(time + " Secs");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 CountDownTimer,http://developer.android.com/reference/android/os /CountDownTimer.html
Use a CountDownTimer, http://developer.android.com/reference/android/os/CountDownTimer.html
首先,您必须创建并初始化 Timer 对象:
First of all, you have to create and initialize Timer object:
我使用可运行的处理程序线程。
i use handler thread runnable.