带有 keylisteners 的 Java swing gui 程序在 linux 中不起作用

Posted

技术标签:

【中文标题】带有 keylisteners 的 Java swing gui 程序在 linux 中不起作用【英文标题】:Java swing gui program with keylisteners that does not work in linux 【发布时间】:2019-01-17 13:22:41 【问题描述】:

我用java编写了一个基本的控制板gui。当按下箭头键时,文本将显示在键盘上按下了哪个按钮,并且按钮会改变颜色。

问题是这个程序在 Windows 中运行良好,但是当我在运行名为 raspbian 的 linux 版本的树莓派上尝试它时,这似乎不起作用。当我按下按钮时,程序什么也不做。

package finalRobotControl;

import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.xml.bind.Marshaller.Listener;

public class Main implements KeyListener
    public static JButton buttonLeft;
    public static JButton buttonRight;
    public static JButton buttonUp;
    public static JButton buttonDown;
    public static JLabel stage;

    public static void main(String [] args)
        JFrame window = new JFrame("RobotController");
        window.setVisible(true);
        window.setSize(200, 200);
        window.setPreferredSize(new Dimension(400, 200));
        window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel panel = new JPanel();
        panel.setLayout(null);

        //add panel to window
        window.add(panel);

        stage = new JLabel("");
        stage.setBounds(85, 65, 50, 35);
        panel.add(stage);

        buttonLeft = new JButton("←");
        buttonLeft.setBounds(10, 65, 50, 35);
        //buttonLeft.setBackground(Color.BLUE);
        panel.add(buttonLeft);

        buttonRight = new JButton("→");
        buttonRight.setBounds(130, 65, 50, 35);
        panel.add(buttonRight);


        buttonUp = new JButton("↑");
        buttonUp.setBounds(70, 25, 50, 35);
        panel.add(buttonUp);

        buttonDown = new JButton("↓");
        buttonDown.setBounds(70, 105, 50, 35);
        panel.add(buttonDown);

        window.addKeyListener(new Main());

    

    @Override
    public void keyPressed(KeyEvent e) 
        // TODO Auto-generated method stub
        if(e.getKeyCode() == KeyEvent.VK_LEFT)
            buttonLeft.setBackground(Color.WHITE);
            System.out.println("Left");
            stage.setText("Left");
        
        if(e.getKeyCode() == KeyEvent.VK_RIGHT)
            buttonRight.setBackground(Color.WHITE);
            System.out.println("Right");
            stage.setText("Right");
        
        if(e.getKeyCode() == KeyEvent.VK_UP)
            buttonUp.setBackground(Color.WHITE);
            System.out.println("Up");
            stage.setText("Up");
        
        if(e.getKeyCode() == KeyEvent.VK_DOWN)
            buttonDown.setBackground(Color.WHITE);
            System.out.println("Down");
            stage.setText("Down");
        
      

    @Override
    public void keyReleased(KeyEvent e) 
        // TODO Auto-generated method stub
        JButton lol = new JButton();
        if(e.getKeyCode() == KeyEvent.VK_LEFT)
            buttonLeft.setBackground(lol.getBackground());
            stage.setText("");
        
        if(e.getKeyCode() == KeyEvent.VK_RIGHT)
            buttonRight.setBackground(lol.getBackground());
            stage.setText("");
        
        if(e.getKeyCode() == KeyEvent.VK_UP)
            buttonUp.setBackground(lol.getBackground());
            stage.setText("");
        
        if(e.getKeyCode() == KeyEvent.VK_DOWN)
            buttonDown.setBackground(lol.getBackground());
            stage.setText("");
        




    

    @Override
    public void keyTyped(KeyEvent arg0) 
        // TODO Auto-generated method stub

    


【问题讨论】:

这真的在树莓派上运行吗? 【参考方案1】:

KeyListener 以对何时生成KeyEvents 很挑剔而闻名。 KeyListener 只会在它注册到的组件具有焦点且具有焦点时生成 KeyEvents。

将 KeyListener 直接添加到窗口会更加困难,因为窗口和使用之间可以有任意数量的组件,这可能会窃取焦点。

相反,您应该使用Key Bindings API,它允许您控制生成关键事件所需的焦点级别

【讨论】:

@MarkJeronimus KeyListener 不是唯一的问题,当窗口第一次打开时哪个组件实际获得焦点取决于平台......

以上是关于带有 keylisteners 的 Java swing gui 程序在 linux 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

改进我的键盘输入 (KeyListener) Java

如何在 Java 中正确使用 keyListener

Java KeyListener 与键绑定

解释 Java 中的 KeyListener

Java KeyListener 未注册箭头键

KeyListener java,执行按钮的动作