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

J2ME

开发平台:

Java

  1. import javax.microedition.lcdui.*;
  2. import javax.microedition.midlet.MIDlet;
  3. public class RunningIndefiniteGaugeDemo extends MIDlet implements CommandListener {
  4.     private final static Command CMD_EXIT = new Command("Exit", 
  5.                                                         Command.EXIT, 1);
  6.     private Display display;
  7.     private Form mainForm;
  8.     public RunningIndefiniteGaugeDemo() {
  9.         display = Display.getDisplay(this);
  10.         mainForm = new Form("Gauge演示");
  11.         mainForm.append(new Gauge("未知范围且持续运行 - Continuous_Running", false, 
  12.                           Gauge.INDEFINITE, Gauge.CONTINUOUS_RUNNING));
  13.         mainForm.addCommand(CMD_EXIT);
  14.         mainForm.setCommandListener(this);
  15.         
  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. }