⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 textinput.java

📁 这是一个关于Java 2 Mobile Edition 的自定义组件的部分源码,我觉得还不错,所以就上传了.
💻 JAVA
字号:
package customitem;import javax.microedition.lcdui.*;import javax.microedition.midlet.MIDlet;public class TextInput extends TextBox implements CommandListener {    private final static Command CMD_OK = new Command("OK", Command.OK,                                                        1);    private final static 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -