J2ME中文教程 3 MIDP高级UI 的使用[25]

[入库:2006年2月23日] [更新:2007年3月24日]

本文简介:

    private final static Command CMD_EXIT = new Command("Exit", Command.EXIT, 1);

    private Display display;

   

    private boolean firstTime;

    private Form mainForm;

   

    public CustomItemDemo() {

        firstTime = true;

        mainForm = new Form("Custom Item");

    }

 

    protected void startApp() {

        if(firstTime) {

            display = Display.getDisplay(this);

 

            mainForm.append(new TextField("Upper Item", null, 10, 0));

            mainForm.append(new Table("Table", Display.getDisplay(this)));

            mainForm.append(new TextField("Lower Item", null, 10, 0));

            mainForm.addCommand(CMD_EXIT);

            mainForm.setCommandListener(this);

            firstTime = false;

        }

        display.setCurrent(mainForm);

    }

 

    public void commandAction(Command c, Displayable d) {

        if (c == CMD_EXIT) {

            destroyApp(false);

            notifyDestroyed();

        }

    }

本文关键:J2ME中文教程 3 MIDP高级UI 的使用
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top