在 Android 中启动和处理多个 CountDownTimers
在Android中,我需要在同一屏幕上同时启动并显示多个CountDownTimer,一个接一个。我怎样才能继续实施这个?使用线程会有帮助吗?
In Android, I need to start and display multiple CountDownTimers at the same time, on the same screen, one after another. How can I proceed implementing this? Will using threads help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为要运行的每个计时器定义数组或列表,
并定义一个每秒递减它们的计时器。
https://chat.stackoverflow.com/users/443141
有一个关于如何每秒安排任务的示例。在得到的方法中
每秒调用一次,减少所有数组的值并更新文本标签。
要重置计时器,只需设置新的剩余秒数即可。
you can define and array or list for each timer you want to run,
and define a timer that decrements them every second.
https://chat.stackoverflow.com/users/443141
has an example on how to schedule tasks every second. In the method that gets
called every second, decrement the values of all arrays and update a text-label.
to reset a timer simply set a new seconds left value.