Remove command from TextBox : TextBox « J2ME « Java Tutorial






Remove command from TextBox
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.TextBox;
import javax.microedition.lcdui.TextField;
import javax.microedition.midlet.MIDlet;

public class J2METextBoxCaptureRemove extends MIDlet implements CommandListener {
  private Display display;

  private TextBox textbox;

  private Command submit;

  private Command exit;

  public J2METextBoxCaptureRemove() {
    display = Display.getDisplay(this);
    submit = new Command("Submit", Command.SCREEN, 1);
    exit = new Command("Exit", Command.EXIT, 1);
    textbox = new TextBox("First Name:", "", 30, TextField.ANY);
    textbox.addCommand(exit);
    textbox.addCommand(submit);
    textbox.setCommandListener(this);
  }

  public void startApp() {
    display.setCurrent(textbox);
  }

  public void pauseApp() {
  }

  public void destroyApp(boolean unconditional) {
  }

  public void commandAction(Command command, Displayable displayable) {
    if (command == submit) {
      textbox.setString("Hello, " + textbox.getString());
      textbox.removeCommand(submit);
    } else if (command == exit) {
      destroyApp(false);
      notifyDestroyed();
    }
  }
}








31.5.TextBox
31.5.1.Add TextBox to a formAdd TextBox to a form
31.5.2.TextBox which accepts any inputTextBox which accepts any input
31.5.3.Phonenumber TextFieldPhonenumber TextField
31.5.4.Numeric TextFieldNumeric TextField
31.5.5.TextField.PASSWORD | TextField.NUMERIC)TextField.PASSWORD | TextField.NUMERIC)
31.5.6.TextField.PASSWORDTextField.PASSWORD
31.5.7.Check the input value of a password fieldCheck the input value of a password field
31.5.8.TextBox with size
31.5.9.Text AnchorText Anchor
31.5.10.Display text in TextBoxDisplay text in TextBox
31.5.11.Get value from TextFieldGet value from TextField
31.5.12.Remove command from TextBoxRemove command from TextBox