有没有办法在黑莓中启动定时器evnets?

发布于 2024-11-08 22:42:25 字数 78 浏览 0 评论 0原文

我正在制作一个简单的配对游戏,想要一个倒计时器。有没有办法让每个dt触发一个事件?我发现一些使用线程的代码,但对于我的需要来说似乎要复杂得多。

I'm making a simple matching game and would like a count down timer. Is there a way to set off an event every dt? I found some code using threads, but seems a lot more complicated for what I need.

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

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

发布评论

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

评论(1

月依秋水 2024-11-15 22:42:25

像这样的东西应该有效:

TimerTask countdown = new TimerTask() {
    public void run() {
        synchronized(UiApplication.getEventLock()) {
            //do the stuff to the UI, ie change the counter
        }
    }
};

Timer timer = new Timer();
timer.scheduleAtFixedRate(countdown, 0, dt);

我没有测试这个,所以我可能有一个错字,但这是基本的想法。看一下 TimerTask定时器文档了解更多信息。

Something like this should work:

TimerTask countdown = new TimerTask() {
    public void run() {
        synchronized(UiApplication.getEventLock()) {
            //do the stuff to the UI, ie change the counter
        }
    }
};

Timer timer = new Timer();
timer.scheduleAtFixedRate(countdown, 0, dt);

I didn't test this, so I may have a typo in there, but this is the basic idea. Take a look at the TimerTask and Timer documentation for more info.

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