public void fullscreenKey(final JFrame frame)
{
k = KeyStroke.getKeyStroke(KeyEvent.VK_F1, 0);
getInputMap(WHEN_IN_FOCUSED_WINDOW).put(k, k.toString());
getActionMap().put(k.toString(), new AbstractAction()
{
public void actionPerformed(ActionEvent e)
{
fullscreen(!f1, frame);
f1 = !f1;
}
});
}
每当我将此方法调用到其他类中时,什么都没有发生。由于 getInputMap 和 getActionMap,我无法将此方法设为静态。我用 Main main = new Main(); main.fullscreenKey(frame); 此方法在 Main 构造函数中调用。如何在其他类中调用此方法并使其工作?