📄 testj2me.java
字号:
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
public class TestJ2ME extends MIDlet{
Display display;
TestCanvas canvas;
public TestJ2ME() {
display=Display.getDisplay(this);
canvas=new TestCanvas(this);
}
protected void startApp() throws MIDletStateChangeException {
}
protected void pauseApp() {
}
protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -