在 Android 中启动和处理多个 CountDownTimers

发布于 2024-10-14 00:31:54 字数 78 浏览 2 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉默的熊 2024-10-21 00:31:54

您可以为要运行的每个计时器定义数组或列表,
并定义一个每秒递减它们的计时器。

https://chat.stackoverflow.com/users/443141

有一个关于如何每秒安排任务的示例。在得到的方法中
每秒调用一次,减少所有数组的值并更新文本标签。

...
for ( int i=0; i < timers.length; i++) {
   if ( timers[i] > 0 ) {
      timers[i]--;
      // update your textlabel
   } else {
      // change the text color, flash,vibrate,...
   }
}
...

要重置计时器,只需设置新的剩余秒数即可。

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.

...
for ( int i=0; i < timers.length; i++) {
   if ( timers[i] > 0 ) {
      timers[i]--;
      // update your textlabel
   } else {
      // change the text color, flash,vibrate,...
   }
}
...

to reset a timer simply set a new seconds left value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文