Java |两个JButton中的ActionListeners,没有响应

时间:2016-01-29 09:39:21

标签: java jbutton actionlistener

我已经坚持了几天(第一次使用多个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
}
}

2 个答案:

答案 0 :(得分:1)

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

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

horizontalePlaats = midden;

答案 1 :(得分:0)

你在油漆中覆盖了horizo​​ntalePlaats。

int midden = getWidth() / 2; // halfway screen
int balDiameter = 50;
int ovaalDiameter = 25;
horizontalePlaats = midden;

我认为你的动作听众很好,但你只需要将horizo​​ntalePlaats初始化到中间。

你可以移动这个

int midden = getWidth() / 2; // halfway screen
horizontalePlaats = midden;

到你的Paneel构造函数。