在我的应用程序中,我使用默认按钮。我希望它在ENTER
密钥发布时做出反应。不是 <按> 按时的<{1}}。
我从按钮的ENTER
中删除了KeyStroke
。但它对我不起作用。我该怎么做?
InputMap
这是示例代码。
答案 0 :(得分:27)
JRootPane rootPane = SwingUtilities.getRootPane(/* Your JButton */);
rootPane.setDefaultButton(/* Your JButton */);
答案 1 :(得分:7)
默认按钮的键(即,在输入时触发的按钮,无论是哪个组件是focusOwner)都绑定在rootPane的componentInputMap中,即它的WHEN_IN_FOCUSED_WINDOW类型的inputMap。从技术上讲,这是调整的地方:
JComponent content = new JPanel();
content.add(new JTextField("some focusable"));
content.add(new JTextField("something else"));
JXFrame frame = wrapInFrame(content, "default button on released");
Action action = new AbstractAction("do something") {
@Override
public void actionPerformed(ActionEvent e) {
LOG.info("clicked");
}
};
JButton button = new JButton(action);
content.add(button);
frame.getRootPane().setDefaultButton(button);
// remove the binding for pressed
frame.getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW)
.put(KeyStroke.getKeyStroke("ENTER"), "none");
// retarget the binding for released
frame.getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW)
.put(KeyStroke.getKeyStroke("released ENTER"), "press");
注意:这仍然与非默认按钮的按下/释放行为不同,因为rootPane操作只是调用了button.doClick而没有经过布防/按下buttonModel的移动来间接触发操作。
答案 2 :(得分:2)
InputMap im = button.getInputMap();
im.put(KeyStroke.getKeyStroke("ENTER"), "pressed");
im.put(KeyStroke.getKeyStroke("released ENTER"), "released");
这样做的效果是当按钮释放时按钮只执行一次actionPerformed(如果我理解正确,这就是你想要的)。
编辑:运行以下代码演示了actionPerformed仅在ENTER版本中执行(虽然可视化按钮在ENTER按下时已按下按钮)
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
public class ButtonTest {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
buildFrame();
}
});
}
private static void buildFrame() {
JFrame f = new JFrame("Test");
f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JButton button = new JButton(new AbstractAction("Button") {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("ButtonTest::actionPerformed: CALLED");
}
});
InputMap im = button.getInputMap();
im.put(KeyStroke.getKeyStroke("ENTER"), "pressed");
im.put(KeyStroke.getKeyStroke("released ENTER"), "released");
f.add(button);
f.getRootPane().setDefaultButton(button);
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);
}
}
答案 3 :(得分:1)
您可以使用允许您将onKeyRelease
设置为true
的{{3}}版本,例如此getKeyStroke()
编辑:您可以停止重复,例如此answer。