作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作积木游戏。我希望屏幕每 0.1 秒后变得清晰,以便我可以重绘框架屏幕上的所有内容。
有什么方法可以不发生任何事件直接清空帧屏吗??
最佳答案
你应该覆盖
public void paint(Graphics g)
然后在那里画所有的画。
然后你启动一个计时器,它会调用
repaint();
这是一个基本的例子:
public class MainFrame extends JFrame {
int x = -1;
int inc;
public MainFrame() {
Timer timer = new Timer(10, new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
MainFrame.this.repaint();
}
});
timer.start();
}
public void paint(Graphics g) {
// don't call super.paint(g), we do all the painting
if(x > getWidth()) inc = -5;
if(x < 0) inc = 5;
x += inc;
// here we clear everything
g.setColor(Color.BLACK);
g.fillRect(0, 0, getWidth(), getHeight());
g.setColor(Color.BLUE);
g.drawLine(x, 0, getWidth()-x, getHeight());
}
public static void main(String[] args) {
MainFrame mainFrame = new MainFrame();
mainFrame.setSize(800, 600);
mainFrame.setVisible(true);
}
}
关于java - 我如何在 Java 中清除我的框架屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1957011/
我是一名优秀的程序员,十分优秀!