来自另一个类的多个JButton actionlistener

时间:2014-10-26 12:15:41

标签: java swing jbutton actionlistener

大家好,我对如何创建一个单独的actionlistener类有疑问 这是我现在的代码,工作正常,但不能满足我的需求。

for (int x = 0; x < buttons.length; x++) {
    buttons[x] = new JButton(name[x]);
    buttons[x].addActionListener(this);

}
public void actionPerformed(ActionEvent e) {
    if (e.getSource() == buttons[0]) {
        //command
    } else if (e.getSource() == buttons[1]) {
        //command
    }  

}

所以基本上我希望这些按钮有一个来自另一个类的动作监听器。

1 个答案:

答案 0 :(得分:1)

同样,你的问题有点模糊,有点缺乏背景。您已经知道可以使用任何实现ActionListener的类作为按钮的ActionListener或任何实现Action(或扩展AbstractAction)的类作为按钮的Action,并且很容易证明这一点:

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

public class ActionExample extends JPanel {
   public static final String[] DAYS = {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday"};

   public ActionExample() {
      for (String day : DAYS) {
         add(new JButton(new MyAction(day)));
      }
   }

   private static void createAndShowGui() {
      ActionExample mainPanel = new ActionExample();

      JFrame frame = new JFrame("ActionExample");
      frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
      frame.getContentPane().add(mainPanel);
      frame.pack();
      frame.setLocationByPlatform(true);
      frame.setVisible(true);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            createAndShowGui();
         }
      });
   }
}

class MyAction extends AbstractAction {
   public MyAction(String name) {
      super(name);
   }

   @Override
   public void actionPerformed(ActionEvent evt) {
      System.out.println("Button pressed: " + evt.getActionCommand());
   }
}

但是我担心这仍然无法回答你所遇到的任何我们尚未完全理解的问题。如果这个答案显示如何将外部类用作Action(用作ActionListener),则不回答您的问题,请再次提供更多上下文。