I want to set LWUIT TextField constraint to Number and Password. I make TextField by
TextField tf=new TextField();
tf.setConstraints(TextArea.NUMBER|TextField.PASSWORD);
tf.setInputModeOrder(new String[ ] {"123"} );
I use virtual keyboard for input to this textfield. When I press this textfiled, alphabat virtual keyboard appear and can type alphabat like a to z and other symbol.
How can I set this textfield that only appear numeric virtual keyboard?