将F4的绑定添加到面板内的JTable
之后,TAB的标准行为停止工作。当前单元进入编辑模式,而不是预期的跳转到下一个单元。
使用ActionMap
/ InputMap
或向表中添加KeyListener
时会发生这种情况
ActionMap map = new ActionMap();
map.put("f4Action", new F4Action());
map.setParent(this.getActionMap());
InputMap input = new InputMap();
input.put(KeyStroke.getKeyStroke("F4"), "f4Action");
input.setParent(this.getInputMap());
// this is the table in question
table.setInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, input);
table.setActionMap(map);
或仅使用
table.addKeyListener(new KeyListener() { /*...*/ }
其他方法。是否可以保留标准行为并仅覆盖显式键绑定?以及如何做到这一点。
最佳答案
ActionMap map = new ActionMap();
不要创建新的
ActionMap
。只需使用现有的
ActionMap
:ActionMap map = table.getActionMap();
有关所有当前绑定以及如何自定义绑定的模板的列表,请参见Key Bindings。