📄 ghostmidlet.java
字号:
/**
* MIDP application
* Download by http://www.codefans.net
* @author YbGame_xu
* @version 1.00 05/11/15
*/
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
public class GhostMIDlet extends MIDlet {
public static GhostMIDlet mainMIDlet=null;
GhostCanvas ghostCanvas;
public Display disp=null;
public GhostMIDlet()
{
if (mainMIDlet==null){
mainMIDlet=this;
}
ghostCanvas=new GhostCanvas();
}
protected void startApp()
{
disp=Display.getDisplay(this);
disp.setCurrent(ghostCanvas);
GhostCanvas.playPause=false;
}
protected void pauseApp()
{
GhostCanvas.playPause=true;
}
protected void destroyApp(boolean arg0)
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -