我想在30分钟后刷新BlackBerry应用程序中的内容。
答案 0 :(得分:1)
如果要为该屏幕更新,请使用以下屏幕写入:
public LoadingScreen()//This is constructor
{
createGUI();
callingThread();
}
public void createGUI()
{
//write the all code here;
}
public void callingThread()
{
Thread thread=new Thread()
{
Thread.sleep(3000);
deleteAll();
invalidate();
createGUI();
}
thread.start();
}
像这样你可以刷新屏幕。这里“ invalidate()”刷新屏幕,createGui()再次将内容添加到屏幕上;