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

J2ME

开发平台:

Java

  1. import javax.microedition.midlet.MIDlet;
  2. import javax.microedition.lcdui.*;
  3. public class FormDemo extends MIDlet implements CommandListener {
  4.     private Command exitCommand = new Command("Exit", Command.EXIT, 1);
  5.     private Form mainForm;
  6.     public FormDemo() {
  7.     Item[]items = new Item[]{
  8.     new TextField("用户名:","Your ID…",50, TextField.ANY),
  9.     new TextField("密码:","Your password…",50, TextField.PASSWORD)
  10.     };
  11.     mainForm = new Form("Form演示:登陆",items);
  12.     mainForm.addCommand(exitCommand);
  13.     mainForm.setCommandListener(this);
  14.     
  15.     }
  16.     protected void startApp() {
  17.     Display.getDisplay(this).setCurrent(mainForm);
  18.     }
  19.     public void commandAction(Command c, Displayable s) {
  20. if (c == exitCommand) {
  21.     destroyApp(false);
  22.     notifyDestroyed();
  23. }
  24.     }
  25.     protected void destroyApp(boolean unconditional) {
  26.     }
  27.     protected void pauseApp() {
  28.     }
  29. }