⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testj2me.java

📁 用j2me midp1.0,原码正宗
💻 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 + -