1

我正在制作一个每 750 毫秒更改一次背景颜色的窗口......但是JFrame像这样的闪烁......

错误

我想要这样的东西......

在此处输入图像描述

我找到了一些像这样的解决方案:

1.-Frame.getContentPane().setBackground(Color);
2.-创建一个新线程
3.-Frame.getContentPane().repaint();

但它不起作用

我的代码...

线程 ciclo=new Thread(new Runnable() {

        float c=1f;
        @Override
        public void run() {
            while(true){
            Frame.getContentPane().setBackground(Color.getHSBColor((c/360), 1, 1));
            Frame.getContentPane().repaint();                
            c=(c>=360)?1:c+5;
            try{Thread.sleep(750);}catch(Exception e){}
            }
        }
    });
    ciclo.start();

我怎样才能解决这个问题?谢谢你的建议

4

1 回答 1

3

通过尝试在后台线程中更改 Swing 状态,您违反了 Swing 线程规则。使用 Swing 计时器,因为这可能会解决您的问题。

new Timer(750, new ActionListener() {
  public void actionPerformed(ActionEvent e) {
    contentPane.setBackground((Color.getHSBColor((c/360), 1, 1));
    contentPane.repaint();
    c= (c >= 360) ? 1 : c + 5;
  }
}).start();

编辑 或更好:

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

import javax.swing.*;

@SuppressWarnings("serial")
public class BackgroundColorChange extends JPanel {
   private static final int PREF_W = 400;
   private static final int PREF_H = PREF_W;
   private static final int TIMER_DELAY = 75;

   public BackgroundColorChange() {
      new Timer(TIMER_DELAY, new ActionListener() {
         private int c = 1;

         @Override
         public void actionPerformed(ActionEvent arg0) {
            setBackground(Color.getHSBColor((float) c / 360, 1f, 1f));
            repaint();
            c = (c >= 360) ? 1 : c + 5;
         }
      }).start();
   }

   @Override
   public Dimension getPreferredSize() {
      return new Dimension(PREF_W, PREF_H);
   }

   private static void createAndShowGui() {
      BackgroundColorChange mainPanel = new BackgroundColorChange();

      JFrame frame = new JFrame("BackgroundColorChange");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.getContentPane().add(mainPanel);
      frame.pack();
      frame.setLocationByPlatform(true);
      frame.setVisible(true);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            createAndShowGui();
         }
      });
   }
}
于 2014-04-29T01:54:11.763 回答