网格布局实现特定按钮ActionListener

时间:2012-03-31 20:48:14

标签: java swing jbutton actionlistener grid-layout

我遇到了麻烦;我正在尝试实施影院预订系统但是我无法将actionListener设置为不同网格上的特定按钮。我希望它的工作方式是每个用户都有一个会话,他可以在这个会话中选择座位和票价,如学生费率,老年养老金率。无论如何,我似乎无法添加actionListener,所以当他选择座位时,那些在程序运行时变得不可用。谢谢。

// Load Libraries
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class cinemaSystem {
    // Global Variables
    JFrame frame = new JFrame(); // Creates JFrame
    JLabel title;
    JButton l[][], m[][], r[][]; // Names grid of JButtons
    JPanel panel1, panel2, panel3;

    // Constructor
    public cinemaSystem(){

            title = new JLabel("Cinema Booking");
            title.setFont(new Font("Helvetica", Font.BOLD, 30));
            title.setLocation(12,5);
            title.setSize(600, 60);

            frame.setLayout(null); // Setting Grid Layout
            // panel1.setLayout(new GridLayout(seat,row));
            l = new JButton[4][4]; // Allocating Size of Grid
            panel1 = new JPanel(new GridLayout(4,4));
            panel1.setBackground(Color.black);
            panel1.setBounds(20, 70, 200, 140);
            for(int y = 0; y <4 ; y++){
                    for(int x = 0; x < 4; x++){
                        l[x][y] = new JButton("L" + y + x); // Creates New JButton
                        // l[x][y].addActionListener(this);
                        panel1.add(l[x][y]); //adds button to grid
                    }
            }

            m = new JButton[4][2]; // Allocating Size of Grid
            panel2 = new JPanel(new GridLayout(2,4));
            panel2.setBackground(Color.black);
            panel2.setBounds(240, 140, 200, 70);
            for(int y = 0; y <2 ; y++){
                    for(int x = 0; x < 4; x++){
                        m[x][y] = new JButton("M" + y + x); // Creates New JButton
                        panel2.add(m[x][y]); //adds button to grid
                    }
            }

            r = new JButton[4][4]; // Allocating Size of Grid
            panel3 = new JPanel(new GridLayout(4,4));
            panel3.setBackground(Color.black);
            panel3.setBounds(460, 70, 200, 140);
            for(int y = 0; y <4 ; y++){
                    for(int x = 0; x < 4; x++){
                        r[x][y] = new JButton("R" + y + x); // Creates New JButton
                        panel3.add(r[x][y]); //adds button to grid
                    }
            }

            frame.add(title);
            frame.add(panel1);
            frame.add(panel2);
            frame.add(panel3);
            frame.setPreferredSize(new Dimension(680, 280));
            frame.setTitle("Cinema Booking");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack(); //sets appropriate size for frame
            frame.setVisible(true); //makes frame visible
    }

    // Main Class
    public static void main(String[] args) {
            new cinemaSystem(); //makes new ButtonGrid with 2 parameters
    }
}

1 个答案:

答案 0 :(得分:5)

您可以通过调用传递到getActionCommand()方法的ActionEvent对象上的actionPerformed(...)来获取按下的JButton所保存的文本,或者您可以通过其getSource()获取按下的按钮方法。这些中的任何一个都可以帮助您在阵列中找到JButton并将其取消激活。

其他建议:

  • 不要将this用作ActionListener。而是考虑使用匿名内部类或私有内部类。这将使您的代码更加灵活,ActionListener更加简单。
  • 尝试遵循Java命名约定,包括确保类名以大写字母开头,变量和方法名称以小写字母开头。这将使其他人(例如我们!)能够更容易地一目了然地理解您的代码。
  • 避免使用绝对布局,因为它使您的GUI难以维护,并且不允许您的GUI根据不同的操作系统或屏幕分辨率灵活地重新调整大小。例如,您当前的GUI在我的屏幕上显示如下:

enter image description here

例如,此ActionListener将显示按下了哪个按钮并将取消激活该按钮:

private class MyListener implements ActionListener {
  public void actionPerformed(ActionEvent e) {
     System.out.println("Button pressed: " + e.getActionCommand());
     ((JButton)e.getSource()).setEnabled(false);
  }
}

可以像这样的方式添加到JButton ......

  ActionListener listener = new MyListener();

  for (int i = 0; i < leftBtns.length; i++) {
     for (int j = 0; j < leftBtns[i].length; j++) {
        JButton btn = new JButton("L" + i + j);
        btn.setFont(btn.getFont().deriveFont(Font.BOLD, BTN_FONT_SIZE));
        btn.addActionListener(listener);
        leftPanel.add(btn);
     }
  }

另外,使用适当的布局管理器生成了一个如下所示的GUI:
enter image description here