检查字段是否处于焦点上
我的主屏幕上有三个编辑字段,我想知道哪个编辑字段处于焦点状态。
多谢
there are three edit field on my mainscreen i want to know which edit field is on focous.
thanks alot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者,您可以让 Mainscreen 类实现 FocusChangeListener。
如果将 Edit 控件实例化为 Focusable,并实现侦听器:
Alternatively, you can have your Mainscreen class implement FocusChangeListener.
If you instantiate your Edit controls as Focusable, and implement the listener:
isFocus
公共 boolean isFocus()
确定该字段当前是否具有焦点。
返回:
如果该字段具有焦点,则为 True;否则为假。
自:JDE 4.2.0
isFocus
public boolean isFocus()
Determines if this field currently has the focus.
Returns:
True if this field has the focus; otherwise, false.
Since: JDE 4.2.0