如何为我的j2me应用程序构建基于图像的启动画面?
我已经有了一个应用程序,我需要一个启动画面来附加它。
答案 0 :(得分:3)
J2ME没有默认的“启动画面”方法,它只需显示一张图片几秒钟,然后继续显示下一个显示。如果你真的想要,你可以利用时间在后台加载其他东西。
答案 1 :(得分:2)
您可以使用以下内容:
class SplashScreenSwitcher extends Thread {
private Display display;
private Displayable splashScreen;
private Displayable nextScreen;
public SplashScreenSwitcher(Display display, Displayable splashScreen, Displayable nextScreen) {
this.display = display;
this.splashScreen = splashScreen;
this.nextScreen = nextScreen;
}
public void run() {
display.setCurrent(splashScreen);
try {
Thread.sleep(2000); //Here you set needed time or make a constant
} catch (Exception ex) {}
display.setCurrent(nextScreen);
}
}
因此,您只需创建此类的新实例并启动Thread。