我想让一个球在屏幕上反弹,并带有以下代码。问题是它只在我调整框架大小时移动。所以我在我的面板方法中有我的paintcomponent。当我的线程正在运行时,我运行一个循环,我移动球,睡眠线程并重新绘制。 当我调整框架大小时,球只会移动。 任何人都可以帮助我吗?
public class SpelPaneel extends JPanel {
private JLabel spelLabel;
private JPanel spelPaneel;
private Image background;
private Bal bal;
public SpelPaneel() {
spelPaneel = new JPanel();
spelLabel = new JLabel("spel");
add(spelLabel);
try {
background = ImageIO.read(new File("src/Main/images/background2.jpg"));
} catch (IOException e) {
e.printStackTrace();
}
bal = new Bal(spelPaneel, 50, 50, 15);
bal.start();
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawImage(background, 0, 0, getWidth(), getHeight(), null);
bal.teken(g, Color.red);
}
}
class Bal extends Thread {
private JPanel paneel;
private int x, y, grootte;
private int dx, dy;
private boolean doorgaan;
public Bal(JPanel paneel, int x, int y, int grootte) {
this.paneel = paneel;
this.grootte = grootte;
this.x = x;
this.y = y;
dy = 2;
doorgaan = true;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public void setX(int x) {
this.x = x;
}
public void setY(int y) {
this.y = y;
}
public void run() {
while (doorgaan) {
paneel.repaint();
slaap(10);
verplaats();
}
}
public void teken(Graphics g, Color kleur) {
g.setColor(kleur);
g.fillOval(x, y, 15, 15);
}
public void verplaats() {
if (x > 335 || x < 50) {
dx = -dx;
}
if (y > 235 || y < 50) {
dy = -dy;
}
x += dx;
y += dy;
setX(x);
setY(y);
}
private void slaap(int millisec) {
try {
Thread.sleep(millisec);
} catch (InterruptedException e) {
}
}
}
答案 0 :(得分:2)
spelPaneel = new JPanel(); //
您的SpelPaneel类扩展了JPanel,因此无需创建另一个面板。上面的代码行只是在内存中创建了一个JPanel,但没有对它做任何事情。
bal = new Bal(spelPaneel, 50, 50, 15);
然后你创建你的Bal Thread并将这个虚拟面板传递给它,然后尝试在这个虚拟面板上重新绘制。
Intead我猜测代码应该是:
bal = new Bal(this, 50, 50, 15);
因为“this”指的是您创建的SeplPaneel的实际实例。