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

📄 ui_low6.java

📁 J2ME 无线通信技术应用开发源代码
💻 JAVA
字号:
// 程序名UI_Low6.java
// 测试图象的绘制——Image对象
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class UI_Low6 extends MIDlet implements CommandListener{
  private Display  display;
  private MyCanvas canvas;
  private Command cmdExit;
  public UI_Low6(){
    display = Display.getDisplay( this );
    canvas  = new MyCanvas( this );
    cmdExit = new Command("Exit",Command.SCREEN,1);
    canvas.addCommand(cmdExit);
    canvas.setCommandListener(this);
  }

  protected void startApp(){
    display.setCurrent( canvas );
  }
   
  public void commandAction( Command c, Displayable d ){
    if (c == cmdExit){
      exit();
    }
  }

  public void exit(){
    destroyApp( true );
    notifyDestroyed();
  }

  protected void pauseApp(){
  }
  
  protected void destroyApp( boolean unconditional ){
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -