我已经坚持了几天(第一次使用多个ActionListener,所以请多多包涵)。

我有两个按钮,每个按钮都有一个动作侦听器,用于将图形向左或向右移动。

然而,要么动作听者似乎工作不正常,要么执行的动作不起作用。

我们非常感谢您的建议,我已经尝试过将其切换为Action,如本论坛其他地方所建议的那样,但这也没有解决。

package h03verplaatsbarebal;

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

public class Paneel extends JPanel implements ActionListener{

//declare objects
private JButton knopLinks; // moves ball to left
private JButton knopRechts; // moves ball to right

//constants
private int horizontalePlaats; // variabele voor horizontale plaats
private int VERPLAATSING; // constante voor verplaatsing

/*create panel with 2 buttons (to left, to right) and a ball*/
public Paneel() {
    //create objects
    knopLinks = new JButton ("Naar links");
    knopLinks.addActionListener(this);
    knopRechts = new JButton ("Naar rechts");
    knopRechts.addActionListener(this);

    //Tooltips
    knopLinks.setToolTipText("Klik hier om de bal naar links te bewegen");
    knopRechts.setToolTipText("Klik hier om de bal naar rechts te bewegen");

    //add to window
    add(knopLinks);
    add(knopRechts);
}

public void paintComponent(Graphics g){
    super.paintComponent(g);
    int midden = getWidth() / 2; // halfway screen
    int balDiameter = 50;
    int ovaalDiameter = 25;
    horizontalePlaats = midden;

    //draw line
    g.setColor(Color.GREEN);
    g.drawLine(30, getHeight() - 30, getWidth() -30, getHeight() - 30); //lijn
    //draw ball
    g.setColor(Color.ORANGE);
    g.fillOval(horizontalePlaats - balDiameter, getHeight() - 130, 100, 100); // oranje bal
    g.setColor(Color.BLACK);
    g.drawOval(horizontalePlaats - balDiameter, getHeight() - 130, 100, 100); //lijn van bal
    g.setColor(Color.BLACK);
    g.drawOval(horizontalePlaats - ovaalDiameter, getHeight() - 130, 50, 100); // binnen lijnen
}

/*clicking buttons*/
public void actionPerformed(ActionEvent e) {
    VERPLAATSING = 15;
      if (e.getSource() == knopLinks){ //move to left
          horizontalePlaats = horizontalePlaats - VERPLAATSING;
      }
      else { //move to right
          horizontalePlaats = horizontalePlaats + VERPLAATSING;
      }

    repaint(); // paint again
}
}

最佳答案

您的动作侦听器应该可以工作,但是它所做的只是修改horizontalePlaats的值。

问题是horizontalePlaatsmidden中的paintComponent值覆盖,因此您永远看不到执行操作的结果。

horizontalePlaats = midden;

08-18 00:11