在canvas类里调用textbox

王朝other·作者佚名  2008-05-31
宽屏版  字体: |||超大  

代码

/**

* 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);

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
© 2005- 王朝网络 版权所有