Текстовое поле LWUIT j2me - PullRequest
       12

Текстовое поле LWUIT j2me

1 голос
/ 07 июля 2011

как мне создать TextField ..plz, помогите мне в LWUIT

TextField pin = new TextField ("",TextField.PASSWORD|TextField.URL);
cashpayform.addComponent(pin);
cashpayform.show();
 cashpayform.addCommand(exit);
        cashpayform.setCommandListener(this);
 cashpayform.show();

Ответы [ 2 ]

4 голосов
/ 07 июля 2011

Используйте этот код,

 Form form = new Form("Sample");
 form.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
 TextField textField = new TextField();
 textField.setConstraint(TextField.PASSWORD | TextField.URL);
 textField.setMaxSize(100);
 form.addComponent(textField);
 form.addCommand(new Command("Exit") {

     public void actionPerformed(ActionEvent evt) {
         notifyDestroyed();
     }
 });
 form.show();
3 голосов
/ 07 июля 2011
TextField tf = new TextField();
tf.setConstraint(TextArea.PASSWORD | TextArea.URL);

убедитесь, что TextField и Form являются классами lwuit

...