?? manlayerdownmidlet.java
字號(hào):
package src;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Image;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
public class ManLayerDownMidlet extends MIDlet {
protected Display display;
private ManDownScreen gameScreen;
public ManLayerDownMidlet() {
super();
// TODO Auto-generated constructor stub
}
protected void startApp() throws MIDletStateChangeException {
// TODO Auto-generated method stub
display = Display.getDisplay(this);
try {
gameScreen = null;
gameScreen = new ManDownScreen(this);
gameScreen.start();
display.setCurrent(gameScreen);
} catch (Exception e) {
System.out.println(e);
}
}
protected void pauseApp() {
// TODO Auto-generated method stub
}
protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
// TODO Auto-generated method stub
notifyDestroyed();
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -