Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2120448
  • 博文数量: 1647
  • 博客积分: 80000
  • 博客等级: 元帅
  • 技术积分: 9980
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-13 15:15
文章分类

全部博文(1647)

文章存档

2011年(1)

2008年(1646)

我的朋友

分类:

2008-10-28 18:10:56

 代码

/**

* TextBox´´s instance

*/

private TextBox inputName = null;

/**

* 「cancel」Command

* command in TextBox

*/

private Command cCancel = new Command("cancel", Command.CANCEL, 1);

/**

* 「ok」Command

* command in TextBox

*/

private Command cOK = new Command("ok", Command.OK, 1);

/**

* 保存在TextBox中已输入的值

*/

private String name = "";

/**

* 调用TextBox

* The method disposes the key pressing action

* the code of pressed key

* @param key

*/

public void keyPressed(int key) {

if (key == Canvas.FIRE) {

inputName = new TextBox("请输入姓名", name, 8, TextField.ANY);

inputName.addCommand(cCancel);

inputName.addCommand(cOK);

inputName.setCommandListener(this);

Display.getDisplay(BustRoyal.instance).setCurrent(inputName);

//其中BustRoyal.instance为MIDlet的实例

}

}

/**

* TextBox中的command的处理

*/

public void commandAction(Command c, Displayable d) {

if (c == cCancel) {

Display.getDisplay(BustRoyal.instance).setCurrent(this);

} else if (c == cOK) {

name = inputName.getString().trim();

Display.getDisplay(BustRoyal.instance).setCurrent(this);

}

}

【责编:Peng】

--------------------next---------------------

阅读(159) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~