开发者

How to enter numbers in blackberry without pressing alt key

开发者 https://www.devze.com 2023-01-04 09:03 出处:网络
In my开发者_如何学C application the user needs to enter numbers.On the phone one always needs to press the alt key for numbers. How can I programmatically allow the user to enter numbers in the edit f

In my开发者_如何学C application the user needs to enter numbers. On the phone one always needs to press the alt key for numbers. How can I programmatically allow the user to enter numbers in the edit field without pressing the alt key? Please give an example.


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

精彩评论

暂无评论...
验证码 换一张
取 消