📄 simplegamemidlet.java
字号:
// Any use of this code and/or information below is subject to the
// license terms: http://wireless.java.sun.com/berkeley_license.html
import javax.microedition.lcdui.*;
import javax.microedition.midlet.MIDlet;
public class SimpleGameMIDlet
extends MIDlet
implements CommandListener {
private Display mDisplay;
private SimpleGameCanvas mCanvas;
private Command mExitCommand;
public void startApp() {
if (mCanvas == null) {
mCanvas = new SimpleGameCanvas();
mCanvas.start();
mExitCommand = new Command("Exit", Command.EXIT, 0);
mCanvas.addCommand(mExitCommand);
mCanvas.setCommandListener(this);
}
mDisplay = Display.getDisplay(this);
mDisplay.setCurrent(mCanvas);//Display.getDisplay(this).setCurrent(mCanvas);
}
public void pauseApp() {}
public void destroyApp(boolean unconditional) {
mCanvas.stop();
}
public void commandAction(Command c, Displayable s) {
if (c.getCommandType() == Command.EXIT) {
destroyApp(true);
notifyDestroyed();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -