0

我在重绘面板时遇到问题。我对动画的想法是用 int[] 填充一个数组。那是有效的部分。现在为它设置动画,我使用数组并用数组中的 int[] 填充变量 int[]。然后我调用 repaint 用所有数字重新绘制图像。但直到最后一次重绘才会重绘。任何有想法的人?我认为问题所在的两个班级。下面给出(代码可能很混乱)。

我的想法是,我想按下按钮 shellSort。当我按下这个按钮时,代码将通过一个 for 循环,用整数填充面板中的一个数组。那么它应该重新粉刷我没有做的面板。

编辑:我认为我的问题是它在完成之前永远不会离开 for 循环。如何停止 for 循环以重新绘制面板?然后从我离开的地方继续?

我在一个小示例代码中重建了我的问题:

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

public class Repainten {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        GUI g = new GUI();
    }
}


public class GUI extends JFrame implements ActionListener{
    private JButton button;
    private Panel p;
    private int[] henk = {10, 6, 4, 2, 3, 7, 9};

    public GUI() {
        this.setTitle("getallen");
        this.setSize(200, 200);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        //this.setLayout(new FlowLayout());
        button = new JButton("Button");
        p = new Panel();
        button.addActionListener(this);
        JPanel northPanel = new JPanel();
        northPanel.add(button);
        JPanel centerPanel = new JPanel();
        centerPanel.add(p);
        add(northPanel, BorderLayout.NORTH);
        add(centerPanel, BorderLayout.CENTER);
        //add(button);
        add(p);

        this.setVisible(true);
    }
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == button) {
            animeer();
        }
    }
    public void animeer() {
        for (final int a : henk) {                     
            p.cijfer = a;
            p.repaint();
        }
    }
}
public class Panel extends JPanel{
    public int cijfer = 0;

    public Panel(){

    }
    @Override
    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        Font font = new Font("Algerian", Font.PLAIN, 100);
        g.setFont(font);
        System.out.println(cijfer);
        g.drawString(Integer.toString(cijfer), 60,110);

    }

}
4

2 回答 2

2

问题在于它已经过repaint优化,因此快速连续多次调用该方法将导致只进行最后一次调用。解决方案是使用Swing Timer

Timer timer = new Timer(2000, new ActionListener() {

      int index = 0;

      @Override
      public void actionPerformed(ActionEvent e) {

      p.cijfer = henk[index];
      index++;
      p.repaint();

      if (index == henk.length) {
         Timer timer = (Timer) e.getSource();
         timer.stop();
      }
   }
});
于 2013-06-24T13:22:41.080 回答
0

组件不会总是立即重新绘制...

http://docs.oracle.com/javase/6/docs/api/java/awt/Component.html#repaint%28%29

于 2013-06-24T13:11:35.823 回答