如何使用 CountDownTimer 构造函数调用 Alarm 意图?

发布于 2024-12-05 18:57:56 字数 74 浏览 0 评论 0原文

我正在尝试使用 CountDownTimer 设置闹钟。我的时间以毫秒为单位。如何实现?

感谢任何帮助并提前致谢...

I am trying to set the alarm using CountDownTimer. I have time in milliseconds. How to achieve it?

Any Help is appreciated and thanks in advance...

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

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

发布评论

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

评论(1

著墨染雨君画夕 2024-12-12 18:57:57
CountDownTimer cntr_aCounter = new CountDownTimer(30000, 1000) {
                public void onTick(long millisUntilFinished) {
    }

                public void onFinish() {
    }};cntr_aCounter.start();

这里我设置了 30 秒倒计时。你可以按照这种方式继续。

CountDownTimer cntr_aCounter = new CountDownTimer(30000, 1000) {
                public void onTick(long millisUntilFinished) {
    }

                public void onFinish() {
    }};cntr_aCounter.start();

here i have 30 second countdown are set. you can go ahead by this way.

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