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

J2ME

开发平台:

Java

  1. import javax.microedition.lcdui.*;
  2. import javax.microedition.midlet.MIDlet;
  3. public class StringItemSimpleDemo
  4.     extends MIDlet
  5.     implements CommandListener {
  6.     private Display display;
  7.     private Form mainForm;
  8.     private Font font;
  9.     private final static Command CMD_EXIT =
  10.     new Command("Exit", Command.EXIT, 1);
  11.     
  12.     /**
  13.      * Signals the MIDlet to start and enter the Active state.
  14.      */
  15.     protected void startApp() {
  16.         display = Display.getDisplay(this);
  17.         mainForm = new Form("StringItem演示");
  18.         StringItem item = new StringItem("String Item:", "This is an simple StringItem");
  19.         mainForm.append(item);
  20.         mainForm.addCommand(CMD_EXIT);
  21.         mainForm.setCommandListener(this);
  22.         display.setCurrent(mainForm);
  23.     }
  24.     public void commandAction(Command c, Displayable d) {
  25.             destroyApp(false);
  26.             notifyDestroyed();        
  27.     }
  28.     
  29.     /**
  30.      * Signals the MIDlet to terminate and enter the Destroyed state.
  31.      */
  32.     protected void destroyApp(boolean unconditional) {
  33.     }
  34.     /**
  35.      * Signals the MIDlet to stop and enter the Paused state.
  36.      */
  37.     protected void pauseApp() {
  38.     }            
  39. }