我试图找出如何在JButton上创建一个动作列表器,我是从JButton的arrayList创建的。
这是按钮的arraylist:
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。
感谢任何见解和帮助。
谢谢!
ironmantis7x
答案 0 :(得分: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文件中(使用ArrayLists的地方)。 创建类后,您只需添加动作侦听器。
MyTestListener handler = new MyTestListener();
//Inside the for-each
button.addActionListener(myListener);
如果你只需要1个Listener(对于一个按钮类型;就像itemStateListener一样),只需定义一个具有拟合名称的私有类,并将其添加到foreach中具有上述功能的按钮.addActionListener
度过愉快的一天