LWUIT 中的手机号码验证

发布于 2025-01-02 09:22:04 字数 70 浏览 0 评论 0原文

我想检查 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水晶透心 2025-01-09 09:22:04

TextField 最大大小设置为 10。它仅允许 10 位数字。还要为该 TextField 设置数字约束。它只允许数值。请参阅示例代码,

TextField txtf = new TextField();
txtf.setConstraint(TextField.NUMERIC);
txtf.setInputModeOrder(new String[] {"123"});
txtf.setMaxSize(10);
form.addComponent(txtf);

同时检查 TextField 中文本的长度。如果长度不是 10 位,您可以显示警报。

要检查重复的数字,请使用 addDataChangeListener。您可以处理此侦听器内部的验证。

set the TextField max size to 10. It allows only 10 digits. Also set the numeric constraint to that TextField. It allows only numeric value. See the sample code,

TextField txtf = new TextField();
txtf.setConstraint(TextField.NUMERIC);
txtf.setInputModeOrder(new String[] {"123"});
txtf.setMaxSize(10);
form.addComponent(txtf);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文