?? cirsis.java
字號:
package src;
import javax.microedition.lcdui.Display;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
public class cirsis extends MIDlet {
Display display;
MenuCanvas gc;
public cirsis() {
super();
display=Display.getDisplay(this);
gc=new MenuCanvas(this);
}
protected void startApp() throws MIDletStateChangeException {
display.setCurrent(gc);
}
protected void pauseApp() {
}
protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
}
public void exit()
{
try
{
destroyApp(false);
this.notifyDestroyed();
} catch (MIDletStateChangeException e) {e.printStackTrace();}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -