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

J2ME

开发平台:

Java

  1. import javax.microedition.lcdui.*;
  2. import javax.microedition.midlet.MIDlet;
  3. public class SpacerDemo
  4.     extends MIDlet
  5.     implements CommandListener{
  6.     private Display display;
  7.     private Form mainForm;
  8.     private StringItem item;
  9.     private Spacer spacer;
  10.     private final static Command CMD_GO = new Command("Go",Command.ITEM,1);
  11.     private final static Command CMD_PRESS =
  12.     new Command("Press", Command.ITEM, 1);
  13.     private final static Command CMD_EXIT =
  14.     new Command("Exit", Command.EXIT, 1);
  15.     protected void startApp() {
  16.         display = Display.getDisplay(this);
  17.         mainForm = new Form("Spacer演示");
  18.         mainForm.append(new StringItem("", "BUTTON_1", Item.BUTTON));
  19.         mainForm.append(new Spacer(80,15));
  20.         mainForm.append(new StringItem("", "BUTTON_2", Item.BUTTON));
  21.         mainForm.append(new Spacer(80,15));
  22.         mainForm.append(new StringItem("", "BUTTON_3", Item.BUTTON));
  23.         mainForm.append(new Spacer(80,15));
  24.         mainForm.append(new StringItem("", "BUTTON_4", Item.BUTTON));
  25.         mainForm.addCommand(CMD_EXIT);
  26.         mainForm.setCommandListener(this);
  27.         display.setCurrent(mainForm);
  28.     }
  29.     public void commandAction(Command c, Displayable d) {
  30.             destroyApp(false);
  31.             notifyDestroyed();        
  32.     }
  33.     protected void destroyApp(boolean unconditional) {
  34.     }
  35.     protected void pauseApp() {
  36.     }            
  37. }