我目前正在编写一个游戏,其中一部分包括将不同的瓷砖放入棋盘中。我计划通过使用不同的按钮来模拟这一点,这些按钮将用于表示具有相应坐标的瓷砖。例如,一个按钮会说"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);
}
}
}
}
} );
但是,它给了我一个错误,说在"{"之后有一个预期的操作
您可以向循环中创建的每个 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 的信息,您可以参考此线程 如何在 Java 中将 ActionListener 添加到 JButton 上
希望这有帮助!
你需要监听器。
将 ActionListener 实现到您的类。这将要求您向班级添加public void actionPerformed(ActionEvent e) {}
。
您使用的每个 JButton 都应该有一个操作侦听器。像这样应用一个:
JButton but = new JButton();
but.addActionListener(this);
最后,在我们添加的 actionPerforming 方法中,您需要添加类似以下内容的内容:
public void actionPerformed(ActionEvent e) {
if (e.getSource() == but)
but.setBackground(Color.BLACK);
}
附言您可以通过以下方式获取按钮的文本值:
but.getText();