随机颜色背景

时间:2013-10-08 00:22:11

标签: java swing graphics keylistener paintcomponent

当我按'r'时,我试图让这段代码将背景颜色更改为随机颜色。到目前为止,除了将背景颜色更改为随机颜色之外,一切正常。这个程序是一个屏幕保护程序,我必须随机颜色生成随机位置的随机形状。

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.Random;

public class ScreenSaver1 extends JPanel {
    private JFrame frame = new JFrame("FullSize");
    private Rectangle rectangle;
    boolean full;

    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        setBackground(Color.BLACK);
    }

    ScreenSaver1() {
        // Remove the title bar, min, max, close stuff
        frame.setUndecorated(true);
        // Add a Key Listener to the frame
        frame.addKeyListener(new KeyHandler());
        // Add this panel object to the frame
        frame.add(this);
        // Get the dimensions of the screen
        rectangle = GraphicsEnvironment.getLocalGraphicsEnvironment()
        .getDefaultScreenDevice().getDefaultConfiguration().getBounds();
        // Set the size of the frame to the size of the screen
        frame.setSize(rectangle.width, rectangle.height);
        frame.setVisible(true);
        // Remember that we are currently at full size
        full = true;
    }

// This method will run when any key is pressed in the window
class KeyHandler extends KeyAdapter {
    public void keyPressed(KeyEvent e) {
        // Terminate the program.
        if (e.getKeyChar() == 'x') {
            System.out.println("Exiting");
            System.exit(0);
        }
        else if (e.getKeyChar() == 'r') {
            System.out.println("Change background color");
            setBackground(new Color((int)Math.random() * 256, (int)Math.random() * 256, (int)Math.random() * 256));
        }
        else if (e.getKeyChar() == 'z') {
            System.out.println("Resizing");
            frame.setSize((int)rectangle.getWidth() / 2, (int)rectangle.getHeight());
        }
    }

}

public static void main(String[] args) {
        ScreenSaver1 obj = new ScreenSaver1();
    }
}

2 个答案:

答案 0 :(得分:4)

我首先从您的setBackground(Color.BLACK);方法中删除paintComponent

您遇到的另一个问题是您计算随机值的方式......

(int)Math.random() * 256

这基本上是将Math.random()的结果投放到int,这通常会导致它变为0,然后再乘以256,这是0 (int)(Math.random() * 256) ...

相反,请尝试使用类似

的内容
Math.random() * 256

在将结果转换为int

之前,会执行{{1}}的计算

您可能还想看看Frame#getExtendedStateFrame#setExtendedState ......它会让您的生活变得更加美好......

答案 1 :(得分:0)

试试这个:

(int)(Math.random() * 256)

或者这个:

Random gen= new Random();
getContentPane().setBackground(Color.Black);

要获得随机颜色,请尝试以下操作:

.setBackground(Color.(gen.nextInt(256), gen.nextInt(256),
                gen.nextInt(256));