public ButtonGrid(int width, int length){
Random r=new Random();
int w=r.nextInt(13-1)+1;
JTextField g = new JTextField();
Scanner u=new Scanner(System.in);
frame.setSize(500, 500);
frame.setLayout(new GridLayout(width,length));
grid=new JButton[width][length];
for(y=0;y<length;y++){
for(x=0;x<width;x++){
//if (y < 4) {
//grid[x][y]=new JButton("x");
//}
//else if (y>5){
//grid[x][y]=new JButton(""+u.nextInt());
//frame.setVisible(true);;
//}
//else{
grid[x][y]=new JButton(" ");
//}
frame.add(grid[x][y]);
}
}
grid[x][y].addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("Hello");
((JButton)e.getSource()).setBackground(Color.red);
}
});
我有一个按钮网格,当我尝试添加一个actionListener时,它给出了一个错误,说出OutOfBoundsException 我只是希望它是这样的,当我点击任何按钮它会打印你好,它会变成红色。 请帮忙
答案 0 :(得分:2)
您需要将ActionListener添加到每个按钮,因此在创建按钮时需要将ActionListener添加到按钮。
grid[x][y]=new JButton(" ");
grid[x][y].addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("Hello");
((JButton)e.getSource()).setBackground(Color.red);
}
});
更好的方法是创建一个ActionListener,因为每个按钮的代码都相同。类似的东西:
ActionListener al = new ActionListener()
{
public void actionPerformed(ActionEvent e){
System.out.println("Hello");
((JButton)e.getSource()).setBackground(Color.red);
}
});
...
for (y...)
for (x....)
JButton button = new JButton(...);
button.addActionListener(al);
grid[x][y] = button;