Questions tagged [lwuit-textfield]

Allows in place editing using a lightweight API without necessarily moving to the external native text box.

The main drawback in this approach is that editing can't support features such as T9 and might not have the same keymapping or behavior of the native text input.

Notice that due to limitations of text area and text field input modes in text area aren't properly supported since they won't work properly across devices. To limit input modes please use the setInputModeOrder method. All constants declated in TextArea are ignored with the exception of PASSWORD.

22 questions
0
votes
1 answer

How to capitalize initial word in lwuit textfield?

I have tried my textfield to have the very first letter to be capitalized with the following code :- Form f = new Form(); TextField firstname = new…
Ganesh
  • 179
  • 10
0
votes
1 answer

LWUIT 1.5 VKB issue

The native keyboard for BB, opened via LWUIT 1.5 has the following issues, The EditField of BB, if it is added to the bottom of the form, doesn't scroll up. I am getting a rectangular box (like a selector or a magnifier) when I type something, then…
0
votes
1 answer

How to make TextField editable when it is inside a List?

There is a List containing TextFields. The problem is that these fields are not editable ! Here are codes : public formConstructor() { ... private Vector vList = new Vector(); // datasource of the list private…
pheromix
  • 18,213
  • 29
  • 88
  • 158
0
votes
2 answers

lwuit key released

How to detect key is released in Textfield ? I have tried by over-riding keyReleased(int code) but not working well . as shown in below : TextField tf = new TextField(){ public void keyReleased(int keyCode) { } …
Shyam Tha
  • 11
  • 1
  • 3
0
votes
1 answer

lwuit textfield decimal constraint and vbk wrong characters

I set the constraint of one of my tetfields to DECIMAL, the problem is that VBK shows other unnecessary characters such as: & @ - " ' etc because it's impossible to remove VBK in touch devices i decided to check the string for these characters: if…
Ali
  • 1,451
  • 1
  • 15
  • 19
0
votes
2 answers

(Codenameone) Blackberry TextField Missing Border When Focusing

I want to ask why the border of TextField in Blackberry (CodenameOne) always missing when focusing? I am using Native Themes and I have try with theme builder to change the attribute (TextField Background, border etc..) but still missing, does…
user1322044
  • 53
  • 1
  • 4
-3
votes
1 answer

Mobile Number Validation In LWUIT

I want to check the 10 digit phone number whether all 10 digits are same or different. If same means Invalid mobile number alert will be displayed. I want a code in LWUIT.
Juhi
  • 85
  • 7
1
2