LWUIT 中的手机号码验证
我想检查 10 位电话号码是否所有 10 位都相同或不同。如果相同,则将显示无效的手机号码警报。我想要 LWUIT 中的代码。
I want to check the 10 digit phone number whether all 10 digits are same or different. If same means Invalid mobile number alert will be displayed. I want a code in LWUIT.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
TextField
最大大小设置为 10。它仅允许 10 位数字。还要为该TextField
设置数字约束。它只允许数值。请参阅示例代码,同时检查
TextField
中文本的长度。如果长度不是 10 位,您可以显示警报。要检查重复的数字,请使用
addDataChangeListener
。您可以处理此侦听器内部的验证。set the
TextField
max size to 10. It allows only 10 digits. Also set the numeric constraint to thatTextField
. It allows only numeric value. See the sample code,Also check the length of the text in
TextField
. If length isn't 10 digit, you can showing the alert.For checking repeated numbers, Use
addDataChangeListener
. You can handle the validation inside of this listener.