11-05-2009, 01:43 AM
|
#1 (permalink)
|
| Thumbs Must Hurt
Join Date: Mar 2007 Location: India Model: 8100 Carrier: Airtel
Posts: 64
Post Thanks: 0 Thanked 0 Times in 0 Posts
| custom text field is not consuming backspace Please Login to Remove! Hi All,
I have implemented a custom text field that extends BasicEditField..
public CustomTextField(String txt){
super("", txt, 300, BasicEditField.EDITABLE | BasicEditField.FOCUSABLE | BasicEditField.ACTION_INVOKE);
isSearchBox = true;
textFieldFont = textFieldFont.derive(Font.PLAIN, 12);
textFieldHeight = textFieldFont.getHeight();
textFieldWidth = Graphics.getScreenWidth()-90;
setText(txt);
}
This is my constuctor..
When textfield already contain some text it wont consume backspace event. It shows all other key chars but when at start i click backspace(from simulator key pad) no action is take place. Although it has to take as i havent overrided any other method for doing anything manually.
Please anybody if know what to do. please let me know.
Thanks.
__________________
Crazy for BlackBerry |
| Offline
| |