- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 jDialog,其中包含一些需要聚焦的字段。
我看到一些奇怪的行为,有时聚焦会失败,如果您按下 Tab 键,您可以在下面的底层父窗口中看到焦点发生变化,很明显焦点没有转移。
我读了一篇关于聚焦的有趣文章(由 camickr 撰写): http://tips4java.wordpress.com/2010/03/14/dialog-focus/但这并没有解决问题。
虽然使用那个监听器,我可以轻松地添加调试以尝试查看发生了什么...
public class RequestFocusListener implements AncestorListener
{
private boolean removeListener;
protected static org.slf4j.Logger logger = LoggerFactory.getLogger(RequestFocusListener.class);
/*
* Convenience constructor. The listener is only used once and then it is
* removed from the component.
*/
public RequestFocusListener() {
this(true);
}
/*
* Constructor that controls whether this listen can be used once or
* multiple times.
*
* @param removeListener when true this listener is only invoked once
* otherwise it can be invoked multiple times.
*/
public RequestFocusListener(boolean removeListener) {
logger.debug("creating RequestFocusListener, removeListener = " + removeListener);
this.removeListener = removeListener;
}
@Override
public void ancestorAdded(AncestorEvent e)
{
logger.debug("ancestorAdded detected");
JComponent component = e.getComponent();
logger.debug("requesting focus");
boolean success = component.requestFocusInWindow();
logger.debug("request focus in window result was: " + success);
if (!success) {
logger.debug("KeyboardFocusManager says focus failed.\nfocus owner is " + KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner());
logger.debug("displayable="+component.isDisplayable());
logger.debug("lightweight="+component.isLightweight());
logger.debug("enabled="+component.isEnabled());
logger.debug("focusable="+component.isFocusable());
logger.debug("showing="+component.isShowing());
logger.debug("isRequestFocusEnabled="+component.isRequestFocusEnabled());
} else {
logger.debug("KeyboardFocusManager says we got focus. focus owner is " + KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner());
}
if (removeListener) {
component.removeAncestorListener( this );
}
}
@Override
public void ancestorMoved(AncestorEvent e) {
}
@Override
public void ancestorRemoved(AncestorEvent e) {
}
然后我将监听器添加到 JDialog 主面板中的一个组件
radioButton.addAncestorListener(new RequestFocusAncestorListener());
我得到的输出显示:
displayable=true
lightweight=true
enabled=true
focusable=true
showing=true
isRequestFocusEnabled=true
单步执行代码以查看导致请求失败的原因,我看到它在 Component.requestFocusHelper 中停止:
boolean success = peer.requestFocus(this, temporary, focusedWindowChangeAllowed, time, cause);
我读到组件必须是可显示的/可见的/可聚焦的)但调试显示没问题。
谁能阐明其他可能导致 requestFocus 失败的原因? (并将焦点留在调用父面板中,在本例中是在 jtable 中)
很抱歉没有提供完整的 SSCCE,我已经尝试在一个独立的示例中重现它,但无法让它一直失败。
我很感激任何想法/提示。
跟进 -
似乎我第一次打开对话框时,它获得了焦点,然后当我关闭并重新打开对话框时,焦点并不总是被设置。
有趣的是,关闭对话框后,如果我在再次打开对话框之前更改父项中的焦点,焦点似乎总是得到设置。
最佳答案
焦点请求失败的可能原因有很多。
首先,Component#requestFocus
的 Java 文档实际上指出
Because the focus behavior of this method is platform-dependent, developers are strongly encouraged to use requestFocusInWindow when possible.
和
This component must be displayable, focusable, visible and all of its ancestors (with the exception of the top-level Window) must be visible for the request to be granted
为了使组件变得可聚焦,组件及其所有祖先必须有效(可显示)。我经常看到的一个常见错误是人们在创建新窗口时使用 requestFocus
或 requestFocusInWindow
,但在该窗口实际显示在屏幕上之前(setVisible
不保证窗口会立即可见,只是在未来某个时间它会变得可见。
在这种情况下最好的方法是使用 WindowListener
并监视 windowOpened
事件。然后,我很想使用 SwingUtilities#invokeLater
来确保窗口实际上可以显示在屏幕上。
另一个问题是依赖isDisplayable
。即使组件所在的窗口未(显示在屏幕上),此方法也可能返回 true
。
当组件连接到本地屏幕资源时,它就可以显示了。当它的祖先窗口被打包或可见时,就会发生这种情况……事实上,我发现很难准确确定何时会发生这种情况。
更新
我还应该补充一点,requestFocus
就是一个“请求”。焦点管理子系统可能会否决请求,因为另一个字段拒绝放弃焦点(例如当字段 InputVerifier#shouldYieldFocus
返回 false
时)
关于java - 是什么导致组件 requestFocus 有时失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13810777/
我正在尝试从 TextInputControl 调用 requestFocus 方法。没有成功。我想在打开新选项卡时将焦点放在 TextInputControl 上。我这样做: tab.setCont
在我的 Java Swing 应用程序中,Reuestfocus 方法在构造函数中不起作用。但如果我将 requestfocus 与按钮 Action 监听器一起使用,它就会起作用。我想在表单加载时设
我的 Activity 中有一个编辑文本,想请求关注它。但是,它总是在启动 Activity 时崩溃。 Java代码: foodText = (EditText) findViewById(R.id.
我希望我的应用程序中的 EditText 在应用程序启动时默认具有光标。我尝试使用 还有 userIdInput = (EditText)findViewById(R.id.idInpu
在上面的标记中 不起作用。 Activity 启动时, TextView 未获得焦点。这是因为覆盖 TextView 的进度条吗?有什么解决办法吗
根据图库的位置,一个或另一个编辑文本将接收焦点。虽然我可以做到这一点,但行为的画廊崩溃了:当画廊运行一个位置并将焦点设置在编辑文本上时,画廊的速度崩溃。看来 Gallery 速度太慢,无法按时收到请求
调用 Component.requestFocus() 和手动聚焦某个组件(例如,使用键盘或鼠标聚焦)都会触发 FocusEvent.FOCUS_GAINED。 我正在监听 AWT 事件。 我的问题是
我正在尝试以编程方式指定当用户按下键盘上的下一个按钮时焦点所在的位置。我可以让它为某些人工作,但我有一个情况, View 被跳过,它下面的 View 获得焦点。 我进入了调试器,焦点确实经过了我的 V
全新方向 以下是我的问题的 SSCCE。我试图在输入输入时更新字段,在这种情况下,必须失去焦点才能进行更新。 package test; import java.awt.EventQueue; imp
当用户按键盘上的 Enter 键时,我将焦点从一个 AutoCompleteTextView 切换到另一个 AutoCompleteTextView。问题是当下一个 AutoCompleteTextV
接下来我有多个 Edittexts,我在 xml 中添加了 nextFocus 值。 但是根据未成年人复选框值的状态,一个编辑文本是可见的还是不可见的。所以我需要在 YYYY 编辑文本之后动态地关注它
我在控制对焦方面遇到了一些问题。我的接口(interface)定义如下: 来源( radio 组/可选)目的地(编辑文本)数量(编辑文本)转移(按钮) 我正在将“源代码”的可见性更改为我的代码。当我不
我遇到了一个恼人的屏幕问题。屏幕由一堆 Spinner 组成,一个在另一个下,然后在 Spinner 下方,一个 EditText。 问题是当屏幕启动时,EditText 有焦点,这意味着一些 Spi
我有一个 jDialog,其中包含一些需要聚焦的字段。 我看到一些奇怪的行为,有时聚焦会失败,如果您按下 Tab 键,您可以在下面的底层父窗口中看到焦点发生变化,很明显焦点没有转移。 我读了一篇关于聚
解决这个问题花了很多时间,看起来很容易,但我真的很累,找不到解决方案。我有一个 Activity , Activity 有 4 个 EditText 组件,其中 2 个有包含列表的弹出菜单(Alert
我在按下按钮时膨胀 View 。膨胀 View 就像一个对话框,但是当我尝试使用 requestFocus() 将焦点放在对话框上时,requestFocus() 返回 false 意味着我没有将焦点
下面是我为将焦点从一个编辑文本转移到另一个编辑文本而编写的一段代码,但是我在这个实现中遇到的问题是,焦点移动到特定的编辑文本,然后突然移动到下一个编辑文本。所以,我无法输入任何内容,因为焦点根本不在那
想知道 RequestFocus 和 ReqeustFocusFromTouch 之间的实际区别。何时应该使用每种方法,如何使用每种方法,以及每种方法在哪些情况下有用? 举一些例子并详细解释。 最佳答
我有 Action 线程,因为它是 Swing 软件,EDT。 我希望我的程序绘制对话框窗口,当它出现并且充满数据时,我希望将焦点放在选定的文本字段上。 代码流程:当我执行时,它将运行主线程,该线程在
我在 AnchorPane 中嵌入了一个 TextField 以及几个按钮。默认情况下,TextField 没有焦点,因为我希望它显示提示文本(请参阅 prompttext in textfield
我是一名优秀的程序员,十分优秀!