LWUIT 文本字段

发布于 2025-01-04 04:22:58 字数 86 浏览 1 评论 0原文

如果调用 setMaxSize(1) 方法,触觉键盘仅输入第一个字符。例如只能在“ABC”中写入 A 或在“DEF”中写入 D 等有关如何解决此问题的任何想法

if method setMaxSize(1) is called, tactile keypad only inputs first character .e.g. can only write A in "ABC or D in "DEF" etc any ideas on how to solve this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

断舍离 2025-01-11 04:22:58

有趣的。我自己没有尝试过,但我知道为什么会失败。
我怀疑是否有一个简单的解决方案可以覆盖文本字段输入并自己实现单字符行为。只需将最大长度设置为 2,并通过使用给定的字符调用 super.setText() 来重写 insertChar 方法。

Interesting. I haven't tried this myself but I can see why this would fail.
I doubt whether there is a simple solution for this other that overriding the text field input and implementing the single character behavior yourself. Just set the max length to 2 and override the insertChar method by invoking super.setText() with the given char.

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