如何减小矩形的高度? (Java,AWT)

时间:2013-12-08 01:10:59

标签: java animation awt 2d paint

我是Java的初学者。所以,请帮我解决我的问题。

当矩形的高度增加时,我可以做动画。但我有减少矩形高度的问题。请看这段代码:

public class Animation extends JPanel implements ActionListener {

    Timer timer;
    int i = 100;

public Animation() {
    timer = new Timer(10, this);
    timer.start();
}

 public void paint(Graphics g) {

    Graphics2D g2d1 = (Graphics2D) g;

    g2d1.fillRect(0, 100, 30, i);

}

public static void main(String[] args) {

    JFrame frame = new JFrame("animation");
    frame.add(new Animation());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(800, 800);
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
}

public void actionPerformed(ActionEvent e)
{     
    --i;
    repaint();
}

} 

请帮帮我。

祝你好运 的Pawel

1 个答案:

答案 0 :(得分:2)

它不会在绘制之间清除屏幕,因此它会绘制旧的较大矩形。

试试这个:

public void paint(Graphics g) {
    Graphics2D g2d1 = (Graphics2D) g;
    g.setColor(getBackground());
    g.fillRect(0,0,getWidth(),getHeight()); // draw a rectangle over the display area in the bg color
    g.setColor(Color.BLACK);
    g2d1.fillRect(0, 100, 30, i);
}

或者:

public void paint(Graphics g) {
    super.paint(g); // call superclass method, which does clear the screen
    Graphics2D g2d1 = (Graphics2D) g;
    g2d1.fillRect(0, 100, 30, i);
}

正如camickr在下面指出的那样,自定义绘画应该在paintComponent中完成而不是绘制,所以你应该将方法的名称更改为paintComponent。