📄 udpmidlet.java
字号:
package net;import javax.microedition.midlet.*;import javax.microedition.lcdui.*;/*** MIDlet 主类*/public class UDPMIDlet extends MIDlet { private static UDPMIDlet instance; private UDPScreen displayable = new UDPScreen(this); /** 构造器 */ public UDPMIDlet () { instance = this; } /** MIDlet 启动方法 */ public void startApp () { Display.getDisplay(this).setCurrent(displayable); } /** MIDlet 暂停方法 */ public void pauseApp () {} /** 销毁MIDlet的方法 */ public void destroyApp (boolean unconditional) {} /** 退出MIDlet的方法 */public static void quitApp () { instance.destroyApp(true); instance.notifyDestroyed(); instance = null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -