GWT 中的倒计时时钟
我想在 GWT 中创建一个倒计时时钟,但我找不到等待一秒钟的正确函数。我尝试使用 Thread.Sleep() 但我认为这是出于另一个目的。 你能帮助我吗?这是我的代码。
int count=45;
RootPanel.get("countdownLabelContainer").add(countdown);
for(int i=count; i>=0; i--)
{
countdown.setText(Integer.toString(i));
// Place here the wait-for-one-second function
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下
Timer
(请参见此处)。将示例代码快速更改为接近您想要的内容,但您会希望根据您的目的对其进行增强:
这听起来像是您正在寻找的一般区域中的内容。请注意,您可以使用timer.cancel() 来停止计时器。您需要将其与您的计数联系起来(当 45 达到 0 时)。
Give
Timer
a try (See Here).Changing the example code real quick to something close to what you want, you'll want to buff this up for your purposes though:
This sounds like something in the general area of what your looking for. Note that you can use timer.cancel() to stop the timer. You'll want to tie this in with your count (when 45 hits 0).
下面的代码片段显示了计时器的使用也有效。它展示了如何正确安排计时器以及如何取消它。
The following snippet showing the use of the timer works too. It shows how to schedule the timer properly and how to cancel it.