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

J2ME

开发平台:

Java

  1. /*
  2.  * %W% %E%
  3.  *
  4.  * Copyright (c) 2000-2004 Sun Microsystems, Inc. All rights reserved. 
  5.  * PROPRIETARY/CONFIDENTIAL
  6.  * Use is subject to license terms
  7.  */
  8. package customitem;
  9. import javax.microedition.lcdui.*;
  10. import javax.microedition.midlet.MIDlet;
  11. /**
  12.  *
  13.  * @version 2.0
  14.  */
  15. public class CustomItemDemo extends MIDlet implements CommandListener {
  16.     private final static Command CMD_EXIT =
  17.     new Command("Exit", Command.EXIT, 1);
  18.     private Display display;
  19.     
  20.     private boolean firstTime;
  21.     private Form mainForm;
  22.     
  23.     public CustomItemDemo() {
  24.         firstTime = true;
  25.         mainForm = new Form("用CustomItem实现表格");
  26.     }
  27.     protected void startApp() {
  28.         if (firstTime) {
  29.             display = Display.getDisplay(this);
  30.             mainForm.append(new TextField("Upper Item", null, 10, 0));
  31.             mainForm.append(new Table("Table", Display.getDisplay(this)));
  32.             mainForm.append(new TextField("Lower Item", null, 10, 0));
  33.             mainForm.addCommand(CMD_EXIT);
  34.             mainForm.setCommandListener(this);
  35.             firstTime = false;
  36.         }
  37.         display.setCurrent(mainForm);
  38.     }
  39.     public void commandAction(Command c, Displayable d) {
  40.         if (c == CMD_EXIT) {
  41.             destroyApp(false);
  42.             notifyDestroyed();
  43.         }
  44.     }
  45.     protected void destroyApp(boolean unconditional) {
  46.     }
  47.     protected void pauseApp() {
  48.     }
  49. }