📄 foxmidlet.java
字号:
import com.nttdocomo.ui.Display;
import com.nttdocomo.ui.IApplication;
public class FoxMIDlet
extends IApplication {
public FoxCanvas canvas;
/** Constructor */
public FoxMIDlet() {
}
/** Main method */
public void start() {
canvas = new FoxCanvas();
Display.setCurrent(canvas);
}
/** Handle pausing the MIDlet */
public void pauseApp() {
}
/** Handle destroying the MIDlet */
public void destroyApp(boolean unconditional) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -