简体   繁体   English

如何在CardLayout中获得对按键的关注?

[英]How do I get focus for a keypress in a CardLayout?

I had a CardLayout example working correctly with a button, then tried to convert it to work with keypress. 我有一个CardLayout示例正常使用按钮,然后尝试将其转换为使用按键。 I think the problem is that I don't have focus, but I can't set the focus to frame or panel successfully. 我认为问题在于我没有焦点,但我无法将焦点设置为框架或面板成功。 Thanks! 谢谢!

I tried requestFocusInWindow from the frame and from the first panel shown, and that didn't help. 我从框架和所示的第一个面板尝试了requestFocusInWindow,但这没有帮助。 I asked frame.getFocusOwner() and it returned null. 我问了frame.getFocusOwner()并返回null。 I thought that CardLayout would give the focus to the top element automatically, but while that worked when I had a button, it is not working now. 我认为CardLayout会自动将焦点放在顶部元素上,但是当我有一个按钮时它会起作用,现在它不起作用了。

public class MyCardLayoutExample3 {

    public static void main(String[] args){
    MyCardLayoutExample3 game = new MyCardLayoutExample3();
    game.display();
    }

    void display() {

    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocationRelativeTo(null);
    frame.setSize(300, 200);

    CardLayout cardLayout = new CardLayout();
    frame.getContentPane().setLayout(cardLayout);

    MyGamePanel3 mgp3 = new MyGamePanel3("minigame A", Color.red);
    frame.getContentPane().add(mgp3);
    frame.getContentPane().add(new MyGamePanel3("minigame B", Color.green));
    frame.getContentPane().add(new MyGamePanel3("minigame C", Color.blue));

    frame.setVisible(true);

    System.out.println("owner: " + frame.getFocusOwner()); //this prints null
    }
}
class MyGamePanel3 extends JPanel implements KeyListener{

    MyGamePanel3(String text, Color bg){

        JLabel textLabel = new JLabel(text);
        this.setBackground(bg);
        this.add(textLabel);
    }

    @Override
    public void keyTyped(KeyEvent e) {}

    @Override
    public void keyPressed(KeyEvent e) {
    System.out.println("keyPressed worked");
    }

    @Override
    public void keyReleased(KeyEvent e) {}
}

Changing to key bindings made the example work easily, thanks Abra. 更改为键绑定使示例轻松工作,感谢Abra。 I never got the keyListener to work, despite trying the links above and many other links. 尽管尝试了上面的链接和许多其他链接,我仍然没有让keyListener工作。

import java.awt.CardLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.KeyStroke;
import javax.swing.WindowConstants;

class MyGamePanel extends JPanel{

     MyGamePanel(ActionListener alNext, String text, Color bg){
        JButton buttonNext = new JButton("next");
        buttonNext.addActionListener(alNext);

        JLabel textLabel = new JLabel(text);

        this.setBackground(bg);
        this.add(textLabel);
        this.add(buttonNext);
    }
}
public class MyCardLayoutKeyBindingExample {

        public static void main(String[] args){
           MyCardLayoutKeyBindingExample game = new MyCardLayoutKeyBindingExample();
           game.display();
        }

        void display() {

            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            frame.setLocationRelativeTo(null);
            frame.setSize(300, 200);

            CardLayout cardLayout = new CardLayout();
            //frame.getContentPane().setLayout(cardLayout);
            JPanel mainPanel = new JPanel(cardLayout);
            frame.add(mainPanel);

            ActionListener al1 = e -> cardLayout.next(mainPanel);
            mainPanel.add(new MyGamePanel(al1, "minigame A", Color.red));
            mainPanel.add(new MyGamePanel(al1, "minigame B", Color.green));
            mainPanel.add(new MyGamePanel(al1, "minigame C", Color.blue));


            mainPanel.getInputMap().put(KeyStroke.getKeyStroke("SPACE"), "space");
            Action kp = new AbstractAction() {
                public void actionPerformed(ActionEvent e) {
                    System.out.println("key pressed");
                    }
            };
            mainPanel.getActionMap().put("space", kp);


            frame.setVisible(true);
        }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM