views:

32

answers:

1

Hi friends,

In my application need to enter numbers, in mobile always need to press alt key for numbers, so i need to write the code without pressing alt key, enter the numbers in the edit field, please give me any example.

thankq

+1  A: 

try this.

BasicEditField bef = new BasicEditField(BasicEditField.FILTER_NUMERIC);

and if you want to set filter on the fly.

bef.setFilter(TextFilter.get(TextFilter.NUMERIC));
Vivart
Thankq very much...
upendra
you are welcome please care to accept my answer.
Vivart