我有两个JButtons
称为“左”和“右”。
“向左”按钮向左移动一个矩形对象,“向右”按钮向右移动矩形对象。
我在类中有一个ActionListener
,它在单击任一按钮时充当侦听器。
但是,我希望在单击每个操作时发生不同的操作。如何区分ActionListener
之间点击的内容?
答案 0 :(得分:8)
将actionCommand设置为每个按钮。
//将动作命令设置为两个按钮。
btnOne.setActionCommand("1");
btnTwo.setActionCommand("2");
public void actionPerformed(ActionEvent e) {
int action = Integer.parseInt(e.getActionCommand());
switch(action) {
case 1:
//doSomething
break;
case 2:
// doSomething;
break;
}
}
<强>更新强>
public class JBtnExample {
public static void main(String[] args) {
JButton btnOne = new JButton();
JButton btnTwo = new JButton();
ActionClass actionEvent = new ActionClass();
btnOne.addActionListener(actionEvent);
btnTwo.addActionListener(actionEvent);
btnOne.setActionCommand("1");
btnTwo.setActionCommand("2");
}
}
class ActionClass implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
int action = Integer.parseInt(e.getActionCommand());
switch (action) {
case 1:
// DOSomething
break;
case 2:
// DOSomething
break;
default:
break;
}
}
}
答案 1 :(得分:6)
使用getSource()
可用的ActionEvent
方法非常简单:
JButton leftButton, rightButton;
public void actionPerformed(ActionEvent e) {
Object src = e.getSource();
if (src == leftButton) {
}
else if (src == rightButton) {
}
}