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.
我想从代码中聚焦 libGDX 文本字段,而不单击文本字段。 有没有办法做到这一点?
我有同样的问题,最后通过查看 TextField 代码找到了答案。
您可以通过执行以下操作来集中您的文本字段:
stage.setKeyboardFocus(textField); //show the keyboard textField.getOnscreenKeyboard().show(true);
希望这对某人有所帮助。
在以下代码中用 jtextfield 替换组件的名称:
jtextfield.requestFocus();