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

J2ME

开发平台:

Java

  1. package rgbimagedemo;
  2. import javax.microedition.lcdui.*;
  3. import javax.microedition.midlet.*;
  4. public class RGBImageDemo
  5.     extends MIDlet
  6.     implements CommandListener {
  7.   private Display mDisplay;
  8.   private SnowCrash mSnowCrash;
  9.   public RGBImageDemo() {
  10.     mSnowCrash = new SnowCrash();
  11.     Command exitCommand = new Command("Exit", Command.EXIT, 0);
  12.     mSnowCrash.addCommand(exitCommand);
  13.     mSnowCrash.setCommandListener(this);
  14.     mDisplay = Display.getDisplay(this);
  15.   }
  16.   
  17.   public void startApp() {
  18.     mDisplay.setCurrent(mSnowCrash);
  19.   }
  20.   
  21.   public void pauseApp() {
  22.   }
  23.   
  24.   public void destroyApp(boolean unconditional) {}
  25.   
  26.   // CommandListener method
  27.   
  28.   public void commandAction(Command c, Displayable s) {
  29.     if (c.getCommandType() == Command.EXIT) {
  30.       mSnowCrash.stop();
  31.       notifyDestroyed();
  32.     }
  33.   }
  34.   
  35. }