LWUIT 文本字段
如果调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有趣的。我自己没有尝试过,但我知道为什么会失败。
我怀疑是否有一个简单的解决方案可以覆盖文本字段输入并自己实现单字符行为。只需将最大长度设置为 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 invokingsuper.setText()
with the given char.