textinput.java
来自「j2me编写的关于校园的信息」· Java 代码 · 共 42 行
JAVA
42 行
/*
*
* Copyright 漏 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
package customitem;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.MIDlet;
/**
*
* @version 2.0
*/
public class TextInput extends TextBox implements CommandListener {
private static final Command CMD_OK = new Command("OK", Command.OK, 1);
private static final Command CMD_CANCEL = new Command("Cancel", Command.CANCEL, 1);
private Table parent;
private Display display;
public TextInput(String text, Table parent, Display display) {
super("Enter Text", text, 50, TextField.ANY);
this.parent = parent;
this.display = display;
addCommand(CMD_OK);
addCommand(CMD_CANCEL);
setCommandListener(this);
}
public void commandAction(Command c, Displayable d) {
if (c == CMD_OK) {
// update the table's cell and return
parent.setText(getString());
display.setCurrentItem(parent);
} else if (c == CMD_CANCEL) {
// return without updating the table's cell
display.setCurrentItem(parent);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?