我目前正在为游戏编码,其中一部分包含将不同的瓷砖放入电路板中。我计划通过使用不同的按钮来模拟这个,这些按钮将用于表示具有相应坐标的图块。例如,一个按钮会说" A1"," A2"等等。我想要完成的是让用户点击" A1"平铺,然后是电路板上代表" A1"会改变颜色,有没有办法通过板上的按钮,并将其文本与用户的选择进行比较?以下是我用来创建电路板的内容:
JButton[][] buttons = new JButton[9][12];
JPanel panel = new JPanel(new GridLayout(9,12,5,5));
panel.setBounds(10, 11, 800, 600);
frame.getContentPane().add(panel);
//board
for (int r = 0; r < 9; r++)
{
for (int c = 0; c < 12; c++)
{
buttons[r][c] = new JButton("" + (c + 1) + numberList[r]);
buttons[r][c].setBackground(Color.WHITE);
panel.add(buttons[r][c]);
}
}
这是我在其中一个瓷砖的代码上写的
JButton tile1 = new JButton ("A1");
tile1.setBounds(60,725,60,60);
frame.getContentPane().add(tile1);
tile1.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
String buttonText = tile1.getText();
// iterating through all buttons:
for(int i=0;i<buttons.length;i++){
for(int j=0;j<buttons[0].length;j++)
{
JButton b = buttons[i][j];
String bText = b.getText();
if(buttonText.equals(bText))
{
[i][j].setBackground(Color.BLACK);
}
}
}
}
} );
然而,在给我一个错误,说在&#34; {&#34;
之后会有一个行动。答案 0 :(得分:2)
您可以为循环中创建的每个JButton添加一个动作侦听器,如下所示:
buttons[r][c].addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// your code here
}
} );
将侦听器放在代码中可能看起来像
JButton[][] buttons = new JButton[9][12];
JPanel panel = new JPanel(new GridLayout(9,12,5,5));
panel.setBounds(10, 11, 800, 600);
frame.getContentPane().add(panel);
//board
for (int r = 0; r < 9; r++)
{
for (int c = 0; c < 12; c++)
{
buttons[r][c] = new JButton("" + (c + 1) + numberList[r]);
buttons[r][c].setBackground(Color.WHITE);
buttons[r][c].addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JButton button = (JButton) e.getSource();
String buttonText = button.getText();
// now iterate over all the jbuttons you have
for(int i=0;i<buttons.length;i++){
for(int j=0;j<buttons[0].length;j++){
JButton b = buttons[i][j];
String bText = b.getText();
if(buttonText.equals(bText)){
// you found a match here
// and you have the positions i, j
//
}
}
}
}
} );
panel.add(buttons[r][c]);
}
}
您可以将要更改的颜色存储在全局静态数组中,并在动作侦听器中使用该数组。
有关向JButton添加侦听器的信息,您可以参考此线程How do you add an ActionListener onto a JButton in Java
希望这有帮助!
答案 1 :(得分:1)
你需要听众。
将ActionListener实现到您的类。这需要您向班级添加public void actionPerformed(ActionEvent e) {}
。
您使用的每个JButton都应该有一个动作侦听器。 应用如下:
JButton but = new JButton();
but.addActionListener(this);
最后,在我们添加的actionPerformed方法中,您需要添加类似的内容:
public void actionPerformed(ActionEvent e) {
if (e.getSource() == but)
but.setBackground(Color.BLACK);
}
P.S。您可以通过以下方式获取按钮的文本值:
but.getText();