KeyListener / KeyBindings和添加组件的顺序

时间:2018-06-28 12:58:23

标签: java swing jframe awt key-bindings

在我的程序中,一个JPanel组件被添加到JFrame中,该组件由侦听器使用KeyBindings操作(在阅读了有关聚焦问题后已从KeyListeners更改)。该应用程序的任务是使用箭头键简单地移动绘制的图形。 直到我在绘图板之前添加另一个组件(带有三个按钮的JPanel)之前,此方法都可以完美地工作。 我测试了Keybindings和KeyListener,并且两个方法都存在相同的问题。 如果我在绘图板按键绑定后开始添加组件,则可以再次使用。

这是我在其中添加组件的UI类。

EDIT: removed uncleaned code

我想对Java有更多的了解,因此很感谢任何回答。


编辑:我清除了代码,并创建了问题的“最小”示例。 谢谢安德鲁的注意。

程序应在按向上箭头后在控制台中打印“上移”。

问题发生在这里:

container.add(buttons); //after adding this Key Bindings stops working
container.add(board);

问题是:为什么添加组件的顺序使键绑定停止工作?如果我在 board 键绑定工作之后添加了 buttons

有问题的类(用于创建框架和添加组件)

import java.awt.Container;
import java.awt.Dimension;
import java.awt.GridLayout;

import javax.swing.JFrame;
import javax.swing.KeyStroke;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.WindowConstants;


public class UserInterface implements Runnable {

private static final String MOVE_UP = "moveUP";

private JFrame frame;

public UserInterface() {
}

@Override
public void run() {
    frame = new JFrame("Board");

    frame.setPreferredSize(new Dimension(500, 400));
    frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    frame.setLayout(new GridLayout());

    createComponents(frame.getContentPane());

    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);


}

private void createComponents(Container container) {

    DrawingBoard board = new DrawingBoard();

    container.add(new JButton()); //after adding this figure stops moving - arrow keys doesn't work
    container.add(board);

    MovingUpwards up = new MovingUpwards(board);

    board.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
    board.getInputMap().put(KeyStroke.getKeyStroke("UP"), MOVE_UP);

    board.getActionMap().put(MOVE_UP, up);


}

public JFrame getFrame() {
    return frame;
}

}

用于测试目的的所用类的其余部分:

import javax.swing.SwingUtilities;

public class Main {

public static void main (String[] args) {
    UserInterface ui = new UserInterface();
    SwingUtilities.invokeLater(ui);
}
}



import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JPanel;

public class DrawingBoard extends JPanel {

    public DrawingBoard() {
        super.setBackground(Color.WHITE);
    }

    @Override
    protected void paintComponent (Graphics graphics) {
        super.paintComponent(graphics);
    }

}


import java.awt.Component;
import java.awt.event.ActionEvent;

import javax.swing.AbstractAction;

public class MovingUpwards extends AbstractAction {

    private Component component;

    public MovingUpwards(Component component) {
        this.component = component;
    }

    @Override
    public void actionPerformed(ActionEvent a) {
        System.out.println("movingup");
    }

}

1 个答案:

答案 0 :(得分:1)

键绑定对我来说很好用。查看在Motion Using the Keyboard中找到的Motion Using Key Bindings示例。

我更改了代码:

frame.add( content );
frame.add(left, BorderLayout.NORTH);

收件人:

frame.setLayout(new GridLayout());
frame.add(left);
frame.add( content );

更好地模拟您的逻辑。

如果您需要更多帮助,请阅读上面安德鲁的评论。简化代码以演示问题,以便我们可以通过复制和编译单个源文件来“轻松”测试它,这是测试上面链接中找到的代码的方式。