如何创建只接受黑莓文本的EditField?
如何使 EditField
只接受字母,并且不应该接受任何数字,blackberry.ie 中的任何特殊字符)编辑字段应该只接受字母字符。
How to make EditField
which accept only alphabets and it should not accept any Numeric,any special character in blackberry.ie) that editfield should accept only alphabetic character.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建自己的类(即 AlphaEditField)并让它扩展 EditField。然后重写 keyDown 函数来执行您想要的操作,如下所示:
对于无法在大小写中定义的任何字符,即...任何不在字母表中的字符,大写和小写函数都会返回 false。
You could create your own class (i.e AlphaEditField) and have it extend EditField. Then override the keyDown function to do what you want, something like so:
The upper and lower case functions will return false for any character that can't be defined in case, aka...anything not in the alphabet.
我会像这样定义一个 TextFilter :
I would define a TextFilter like so: