How to repeatedly change colors of a circle using a timer in a Java GUI?

后端 未结 2 1133
[愿得一人]
[愿得一人] 2021-01-27 02:52

I am trying to create a traffic light using a Java GUI, where it displays only one circle and it changes colours from red, to yellow, to green. There should be a timer and only

相关标签:
2条回答
  • 2021-01-27 03:28

    Here is one approach. The lights stay on for 3 seconds. To change their duration the code must be modified accordingly. This would be done inside the timer.

    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import javax.swing.Timer;
    
    public class TrafficLight extends JPanel {
        JFrame frame = new JFrame();
        
        int colorIdx = 0;
        Color[] colors = { Color.green, Color.yellow, Color.red };
        
        public static void main(String[] args) {
            // Ensure the program is started on the Event Dispatch Thread
            SwingUtilities.invokeLater(() -> new TrafficLight().start());
        }
        
        public void start() {
            // set up
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            // set the preferred size. Okay in this instance but best
            // practice dictates to override getPreferredSize()
            setPreferredSize(new Dimension(500, 500));
            
            frame.add(this);
            frame.pack();
            
            // center on screen
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
            
            Timer t = new Timer(3000, ae -> {
                colorIdx = colorIdx >= 2 ? 0 : colorIdx + 1;
                repaint();
            });
            t.start();
        }
        
        
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            
            g.setColor(colors[colorIdx]);
            g.fillOval(150, 150, 200, 200);
            
        }
        
    }
    
    0 讨论(0)
  • 2021-01-27 03:37
    1. Don't extend Canvas. Custom painting in Swing is done by extending JPanel and by overriding the paintComponent() method. Read the section from the Swing tutorial on Custom Painting for more information and working examples.

    2. A painting method should only paint the current state of the class. So you would need to add a method like setLightColor(Color lightColor) to your component that does the custom painting. Then in the painting method you use that value for the Color of your circle (instead of hard coding "RED"). Or you have a method like changeLight() that updates a varable from 0, 1, 2, 0, 1, 2... . Then in the painting method you you check the state of the variable and paint the appropriate color.

    3. You need to use a Swing Timer to schedule an event. When the Timer fires you invoke the setLightColor(...) method on your class.

    4. The Timer should be part of your class that does the custom painting. You should have a method that can start/stop the Timer.

    You can check out: https://stackoverflow.com/a/7816604/131872 for a basic example of the Swing Timer.

    0 讨论(0)
提交回复
热议问题