フォーカスする必要があるいくつかのフィールドを含む 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 on で停止していることがわかります。
boolean success = peer.requestFocus(this, temporary, focusedWindowChangeAllowed, time, cause);
コンポーネントは表示可能/表示可能/フォーカス可能でなければならないことを読みましたが、デバッグは問題ないことを示しています。
requestFocus が失敗する原因として他に何が考えられるのか、誰にも光を当てることができますか? (そして呼び出し元の親パネル (この場合は jtable) にフォーカスを置いたままにします)
完全な SSCCE を提供していないことを前もって申し訳ありません。スタンドアロンの例でこれを再現しようとしましたが、一貫して失敗することはありません。
考えやヒントをいただければ幸いです。
ファローアップ -
ダイアログを初めて開いたときにフォーカスを取得し、ダイアログを閉じて再度開くと、フォーカスが常に設定されるとは限りません。
興味深いことに、ダイアログを閉じた後、ダイアログを再度開く前に親でフォーカスを変更すると、フォーカスが常に設定されているように見えます。