0
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.border.*;

public class TrafficLight extends JFrame implements ActionListener {
    JButton b1, b2, b3;

      Signal green = new Signal(Color.green);
      Signal yellow = new Signal(Color.yellow);
      Signal red = new Signal(Color.red);

    public TrafficLight(){
        super("Traffic Light");
        getContentPane().setLayout(new GridLayout(2, 1));
        b1 = new JButton("Red");
        b2 = new JButton("Yellow");
        b3 = new JButton("Green");
        b1.addActionListener(this);
        b2.addActionListener(this);
        b3.addActionListener(this);       

        green.turnOn(false);
        yellow.turnOn(false);
        red.turnOn(true);

        JPanel p1 = new JPanel(new GridLayout(3,1));
        p1.add(red);
        p1.add(yellow);
        p1.add(green);
        JPanel p2 = new JPanel(new FlowLayout());
        p2.add(b1);
        p2.add(b2);
        p2.add(b3);

        getContentPane().add(p1);
        getContentPane().add(p2);
        pack();
        }


    public static void main(String[] args){
        TrafficLight tl = new TrafficLight();       
        tl.setVisible(true);
    }   
    public void actionPerformed(ActionEvent e){       
        if (e.getSource() == b1){
            green.turnOn(false);           
            yellow.turnOn(false);
            red.turnOn(true);
        } else if (e.getSource() == b2){
            yellow.turnOn(true);           
            green.turnOn(false);
            red.turnOn(false);
        } else if (e.getSource() == b3){
            red.turnOn(false);           
            yellow.turnOn(false);
            green.turnOn(true);
        }
    }
}    
class Signal extends JPanel{

    Color on;
    int radius = 40;
    int border = 10;
    boolean change;

    Signal(Color color){
        on = color;
        change = true;
    }

    public void turnOn(boolean a){
        change = a;
        repaint();       
    }

    public Dimension getPreferredSize(){
        int size = (radius+border)*2;
        return new Dimension( size, size );
    }

    public void paintComponent(Graphics g){
        g.setColor( Color.black );
        g.fillRect(0,0,getWidth(),getHeight());

        if (change){
            g.setColor( on );
        } else {
            g.setColor( on.darker().darker().darker() );
        }
        g.fillOval( border,border,2*radius,2*radius );
    }
}

这将创建一个带有 3 个与颜色相对应的按钮的交通灯,并让它们一次打开一个。如何仅使用空格键使其交替颜色?

目前,该代码有 3 个不同的按钮,用户可以与之交互以确定红绿灯上的颜色。我不确定如何使用空格键作为命令来更改颜色。

4

3 回答 3

3

看看使用Key Bindings。AKeyStroke可用于 SPACE 键,它可以映射到 anAction以循环通过JButton包含redyellowgreen按钮的数组并按顺序调用doClick

JPanel content = (JPanel) getContentPane(); // from JFrame
InputMap inputMap = content.getInputMap();
inputMap.put(KeyStroke.getKeyStroke("SPACE"), "pressed");
content.getActionMap().put("pressed", new AbstractAction() {
   public void actionPerformed(ActionEvent actionEvent) {
      currentButton = ++currentButton % buttons.length;
      buttons[currentButton].doClick();
   }
});

您可以使用模运算符%将按钮索引保持在范围内。

与 不同KeyListenersKey Bindings不需要组件焦点即可工作,因此在开发 Swing 应用程序时应始终首选。

于 2013-06-03T13:35:16.270 回答
1

实现 KeyListener 接口,然后使用此代码

public void keyPressed( KeyEvent e) {
int keyCode = e.getKeyCode();
if(keyCode==KeyEvent.VK_SPACE){

   //Your Light Changing Code Here
...

}
于 2013-06-03T13:19:54.330 回答
0

听起来你需要一个 KeyListener。它的行为与 ActionListener 非常相似,只是它是专门为您的键盘设计的。查看 API:

http://docs.oracle.com/javase/6/docs/api/java/awt/event/KeyListener.html

以及各种keyEvents:

http://docs.oracle.com/javase/6/docs/api/java/awt/event/KeyEvent.html

于 2013-06-03T13:20:02.420 回答