08-27-2010 07:09 AM
Hi Experts,
I have 2 BasicEditFields, one below the other
The upper one is nonfocusable, and the bottom one is focusable
bottom one is used for searching the contacts, and while searching if i am pressing a numeric key the upper basiceditfield is displaying the number pressed for that key.
Now i want to also add "+" character to the upper field when i will press the "0" button (ie keep it pressed)
How can i get + character programmatically?
08-27-2010 07:12 AM
BasicEditField.setText(BasicEditField.getText() + '+' );
08-27-2010 07:15 AM
No .... i am saying if i keep "0" key pressed i get "+" ... how to achieve that....
08-27-2010 07:19 AM
override the
protected boolean keyRepeat(int keycode,
int time)
08-27-2010 07:26 AM
it is not returning the "+" key ![]()
08-27-2010 07:54 AM
is it returning the '0' key?
08-27-2010 07:58 AM
keyrepeat is not called when we press 0 key... and also it is not called when we keep it pressed and release it.....
08-27-2010 08:02 AM
Try using the keyup and keydown function. Save the time from the keydown if the key is 0 and compare it with the time of the keyup function if the key is 0. If the time you compared is the waiting time you want then add the + to the field.
08-27-2010 09:20 AM
Override keyChar method and replace '0' with '+' before passing to super.keyChar... (Should work, never tested)
If you want to do some more complex filtering, create an implementation of TextFilter class and do you conversions inside implementation of "convert" function.