如何将 ActionListener 放在使用 Jbuttons ArrayList 创建的 JButton 上

问题描述 投票:0回答:1

我正在尝试弄清楚如何在我从 JButton 的 arrayList 创建的 JButton 上有一个动作侦听器。

这是按钮的数组列表:

public static ArrayList<JButton> myTests;
    public static ArrayList<JButton> selectedTests;

这是设置它们的逻辑:

public Devices(String[] testList, String title2)
    {
        myTests = createTestList(testList);
        selectedTests = new ArrayList<JButton>();
        checkedSerialNo = new ArrayList();
        int numCols = 2;
        
        //Create a GridLayout manager with
        //four rows and one column
        setLayout(new GridLayout(((myTests.size() / numCols) + 1), numCols));
        
        //Add a border around the panel
        setBorder(BorderFactory.createTitledBorder(title2));
        for(JButton jcb2 : myTests)
        {
            this.add(jcb2);
        }
        
    }
    
    private ArrayList<JButton> createTestList(String[] testList)
    {
        String[] tests = testList;
        ArrayList<JButton> myTestList = new ArrayList<JButton>();
        for(String t : tests)
        {
            myTestList.add(new JButton(t));
        }
        for(JButton jcb2 : myTestList)
        {
            jcb2.addItemListener(this);
        }
        return myTestList;
    }

    @Override
    public void itemStateChanged(ItemEvent ie) 
    {
        if(((JButton)ie.getSource()).isSelected())
        {
            selectedTests.add((JButton) ie.getSource());
        }
        
    }
    
 
    
    public ArrayList<JButton> getSelectedTests()
    {
        return selectedTests;
    }

我不知道的是如何为数组列表中生成的按钮制作actionListner或onClickListener。

java arraylist jbutton actionlistener onclicklistener
1个回答
2
投票

最简单的方法是创建一个内部私有类。

private class MyTestListener implements ActionListener {

   public void actionPerformed(ActionEvent e) {
     // stuff that should happen
   }
}


private class SelectedTestListener implements ActionListener {

   public void actionPerformed(ActionEvent e) {
     // stuff that should happen
   }
}

私有类需要位于同一个 java 文件中(您在其中使用 ArrayList)。 创建类后,您只需添加操作侦听器。

MyTestListener handler = new MyTestListener();

//Inside the for-each
button.addActionListener(myListener);

如果你只需要 1 个监听器(对于一种按钮类型,例如 itemStateListener),只需定义一个具有合适名称的私有类,然后使用上面提到的函数将其添加到 foreach 中的按钮 .addActionListener

祝你有美好的一天

© www.soinside.com 2019 - 2024. All rights reserved.