科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道基础软件在canvas类里调用textbox

在canvas类里调用textbox

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

本文是关于如何在canvas类里调用textbox的源码

作者:51cto.com整理 来源:51cto.com  2007年9月3日

关键字: Canvas textbox

  • 评论
  • 分享微博
  • 分享邮件

代码

/**

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

}

}

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章