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

J2ME

开发平台:

Java

  1. import javax.microedition.lcdui.*;
  2. import javax.microedition.midlet.MIDlet;
  3. public class EXCLUSIVEChoiceGroupDemo
  4.     extends MIDlet implements CommandListener {
  5.     private final static Command CMD_EXIT = new Command("Exit", Command.EXIT, 1);        
  6.     private Display display;
  7.     private ChoiceGroup mChoiceGroup;
  8.     private Form mainForm;
  9.     public EXCLUSIVEChoiceGroupDemo() {
  10.        display = Display.getDisplay(this);
  11.        mainForm = new Form("Choice Group演示");
  12.        Image[] imageArray = null;
  13.        try {
  14.                 Image star = Image.createImage("/star.png");
  15.                 imageArray = new Image[] { star, star, star, star, star, star};
  16.        } catch (java.io.IOException err) {
  17.        }
  18.        String[] stringArray = {
  19.                 "红心大战","空当接龙","三维弹球","蜘蛛纸牌","翻转棋","扫雷"
  20.             };
  21.        mChoiceGroup = new ChoiceGroup("选择游戏项目",ChoiceGroup.EXCLUSIVE,stringArray,imageArray);
  22.        mainForm.append(mChoiceGroup);
  23.       // mChoiceGroup = new ChoiceGroup("选择游戏项目",ChoiceGroup.EXCLUSIVE);
  24.       // mainForm.append(mChoiceGroup);
  25.      //  mChoiceGroup.append("红心大战",null);
  26.       // mChoiceGroup.append("空当接龙",null);
  27.       // mChoiceGroup.append("三维弹球",null);
  28.       // mChoiceGroup.append("蜘蛛纸牌",null);
  29.      //  mChoiceGroup.append("翻转棋",null);
  30.      //  mChoiceGroup.append("扫雷",null);
  31.        mainForm.addCommand(CMD_EXIT);
  32.        mainForm.setCommandListener(this);
  33.     }
  34.     protected void startApp() {        
  35.         display.setCurrent(mainForm);
  36.     }
  37.     public void commandAction(Command c, Displayable d) {
  38.         if (c == CMD_EXIT) {
  39.             destroyApp(false);
  40.             notifyDestroyed();
  41.         }
  42.     }
  43.     protected void destroyApp(boolean unconditional) {
  44.     }
  45.     protected void pauseApp() {
  46.     }
  47. }