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

J2ME

开发平台:

Java

  1. import javax.microedition.lcdui.*;
  2. import javax.microedition.midlet.*;
  3. public class CustomItemDemo
  4.     extends MIDlet
  5.     implements CommandListener {
  6.   private Display mDisplay;
  7.   private Form mMainForm;
  8.   public CustomItemDemo() {
  9.     mMainForm = new Form("用CustomItem实现自定义图像");
  10.     DiamondItem di = new DiamondItem("DiamondItem");
  11.     mMainForm.append(di);
  12.     mMainForm.addCommand(new Command("Exit", Command.EXIT, 0));
  13.     mMainForm.setCommandListener(this);
  14.     mDisplay = Display.getDisplay(this);
  15.   }
  16.   
  17.   public void startApp() {
  18.     mDisplay.setCurrent(mMainForm);
  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.       notifyDestroyed();
  31.   }
  32.   
  33. }