有没有办法在黑莓中启动定时器evnets?
我正在制作一个简单的配对游戏,想要一个倒计时器。有没有办法让每个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西应该有效:
我没有测试这个,所以我可能有一个错字,但这是基本的想法。看一下 TimerTask 和 定时器文档了解更多信息。
Something like this should work:
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.