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
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
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));