NonInteractiveGaugeDemo.java
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. import javax.microedition.lcdui.*;
  2. import javax.microedition.midlet.MIDlet;
  3. public class NonInteractiveGaugeDemo extends MIDlet implements CommandListener 
  4. {
  5.     private final static Command CMD_EXIT = new Command("Exit",Command.EXIT, 1);
  6.     private Display display;
  7.     private Gauge mGauge;
  8.     private Form mainForm;
  9.     public NonInteractiveGaugeDemo() {
  10.         display = Display.getDisplay(this);
  11.         mainForm = new Form("Gauge演示");
  12.         mGauge = new Gauge("非交互模式",false, 5, 2);
  13.         mainForm.append(mGauge);
  14.         mainForm.addCommand(CMD_EXIT);
  15.         mainForm.setCommandListener(this);
  16.     }
  17.     protected void startApp() {
  18.         display.setCurrent(mainForm);
  19.     }
  20.     protected void destroyApp(boolean unconditional) {
  21.     }
  22.     protected void pauseApp() {
  23.     }
  24.     public void commandAction(Command c, Displayable d) {
  25.         destroyApp(false);
  26.         notifyDestroyed();
  27.     }
  28. }