扩展表格,以建立一种新表单 : 表格 « 基于J2ME « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 基于J2ME » 表格 
31. 3. 2. 扩展表格,以建立一种新表单
扩展表格,以建立一种新表单
import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.AlertType;
import javax.microedition.lcdui.Choice;
import javax.microedition.lcdui.ChoiceGroup;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.ItemStateListener;
import javax.microedition.lcdui.TextField;
import javax.microedition.lcdui.Ticker;
import javax.microedition.midlet.MIDlet;

class EntryForm extends Form {
  private TextField symbolField = new TextField("Investment Symbol"""6, TextField.ANY);

  private Command exitCommand = new Command("Exit", Command.EXIT, 1);

  private Command getCommand = new Command("Get", Command.SCREEN, 2);

  private ChoiceGroup investmentChoice = new ChoiceGroup("Type", Choice.EXCLUSIVE, new String[]{ "Stock""Fund" }null);

  public EntryForm(String title) {
    super(title);
    append(symbolField);
    append(investmentChoice);
    addCommand(exitCommand);
    addCommand(getCommand);
  }

  public TextField getSymbolField() {
    return symbolField;
  }

  public ChoiceGroup getInvestmentChoice() {
    return investmentChoice;
  }

  public Command getExitCommand() {
    return exitCommand;
  }

  public Command getGetCommand() {
    return getCommand;
  }
}

public class ObtainQuoteMIDlet extends MIDlet {
  private Display displayMngr = null;

  private EntryForm entryForm = null;

  private Alert resultsAlert = null;

  private Ticker adTicker = new Ticker("Track your investments");

  public ObtainQuoteMIDlet() {
  }

  private void initListener() {
    ItemStateListener itemListener = new ItemStateListener() {
      public void itemStateChanged(Item item) {
        if ((item == entryForm.getInvestmentChoice())
            && (entryForm.getInvestmentChoice().getSelectedIndex() == 1)
            && !(entryForm.getSymbolField().getString().toUpperCase().endsWith("X"))) {
          Alert symbolAlert = new Alert("Check Symbol""Mutual Funds end in 'X'", null,
              AlertType.WARNING);
          symbolAlert.setTimeout(Alert.FOREVER);
          displayMngr.setCurrent(symbolAlert, entryForm);
        }
      }
    };

    CommandListener commandListener = new CommandListener() {
      public void commandAction(Command c, Displayable d) {
        if (c == entryForm.getExitCommand()) {
          destroyApp(true);
        else if (c == entryForm.getGetCommand()) {
          if ((entryForm.getInvestmentChoice().getSelectedIndex() == 1)
              && !(entryForm.getSymbolField().getString().toUpperCase().endsWith("X"))) {
            Alert symbolAlert = new Alert("Check Symbol""Mutual Funds end in 'X'", null,
                AlertType.WARNING);
            symbolAlert.setTimeout(Alert.FOREVER);
            displayMngr.setCurrent(symbolAlert, entryForm);
          else {
            if (entryForm.getSymbolField().getString().length() 0) {
              String sym = entryForm.getSymbolField().getString();
              displayPrice("The price of " + sym + " is $111.19");
            }
          }
        }
      }
    };
    entryForm.setItemStateListener(itemListener);
    entryForm.setCommandListener(commandListener);
  }

  private void displayEntryForm() {
    if (entryForm == null) {
      entryForm = new EntryForm("ObtainQuote");
    }
    initListener();
    displayMngr.setCurrent(entryForm);
  }

  private void displayPrice(String quoteString) {
    if (resultsAlert == null) {
      resultsAlert = new Alert("Quote Price", null, null, AlertType.CONFIRMATION);
      resultsAlert.setTicker(adTicker);
      resultsAlert.setTimeout(Alert.FOREVER);
    }
    resultsAlert.setString(quoteString);
    displayMngr.setCurrent(resultsAlert, entryForm);
  }

  protected void startApp() {
    displayMngr = Display.getDisplay(this);
    displayEntryForm();
  }

  protected void pauseApp() {
  }

  protected void destroyApp(boolean unconditional) {
    notifyDestroyed();
  }

  public void commandAction(Command c, Displayable s) {
  }
}
31. 3. 表格
31. 3. 1. 表格演示表格演示
31. 3. 2. 扩展表格,以建立一种新表单扩展表格,以建立一种新表单
31. 3. 3. 添加控件到表单添加控件到表单
31. 3. 4. 图形用户界面测试图形用户界面测试
31. 3. 5. 从表单添加或删除控制
31. 3. 6. creates a Form with two items, an interactive Gauge and a StringItemcreates a Form with two items, an interactive Gauge and a StringItem
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.