Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找不到做一个简单的方法,比如我想隐藏键盘。我有一个Command和一个TextField。用户可以写,TextField当他按下命令时键盘必须隐藏,但我不知道该怎么做。
Command
TextField
我找到了这样做的方法!
使用Component.requestFocus()其他Component的Form,键盘隐藏!
Component.requestFocus()
Component
Form
有没有人知道其他方式?
我不确定,但尝试这样的事情......
com.sun.lwuit.VirtualKeyboard.getVirtualKeyboard(myTextField).setVisible(false);