在android中显示计时器

发布于 2024-12-06 20:01:17 字数 75 浏览 0 评论 0原文

我的目标是在屏幕上显示一个简单的计时器时钟,它从 20 开始并不断减少,当它变为 0 时我想开始一个操作。 如何实现这一目标? 提前致谢

My objective is to display a simple timer clock on my screen where it starts from 20 and goes on decreasing and when it becomes 0 I want to start an action.
How to achieve this ?
Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

故人如初 2024-12-13 20:01:17

我不知道你想如何显示它,但你也可以通过使用 TextView 并每秒不断更改其文本来做到这一点。

static int i = 20;
 new CountdownTimer(20000, 1000) {

     public void onTick(long millisUntilFinished) {
         i = i-1;
         mTextField.setText(String.valuOf(i));
     }

     public void onFinish() {
         //do your stuff here
     }
  }.start();

I don't know how you want to display it but you can do this also just by taking a TextView and keep changing its Text every second.

static int i = 20;
 new CountdownTimer(20000, 1000) {

     public void onTick(long millisUntilFinished) {
         i = i-1;
         mTextField.setText(String.valuOf(i));
     }

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