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();
}
}