GWT應用程序是一個頁面應用程序。你總是在同一頁面。你可以在任何你喜歡的地方添加定時器。例如,你可以在onModuleLoad的末尾添加這個。
package com.example.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.Timer;
import com.google.gwt.user.client.ui.*;
public class TimerExample implements EntryPoint
{
@Override
public void onModuleLoad()
{
Timer t = new Timer()
{
@Override
public void run()
{
RootPanel.get().clear();
RootPanel.get().add(new HTML("Bye"));
}
};
// Schedule the timer to run once in 5 seconds.
t.schedule(5000);
RootPanel.get().add(new HTML("Hello"));
}
}
你也應該檢查這太: http://www.gwtproject.org/doc/latest/DevGuideMvpActivitiesAndPlaces.html