Java Swing GridBagLayout: JLabel 占用太多space

Java Swing GridBagLayout: JLabel takes up too much space

我有一个带有三个按钮和一个标签的 JPanel。一个按钮和标签在第一行,另外两个按钮在第二行。我需要标签位于右上角,但这样做会导致标签意外增加并将两个向下按钮向左推。

public class UserInterface extends JFrame  {
        int width;
        int height;

        JPanel panel;
        public static void main(String[] args)  {
                run();
        }
        public UserInterface()  {
                setup();
        }

        private void setup()  {
                width=800;
                height=600;

                panel=new UserInterfacePanel();
                getContentPane().add(panel, BorderLayout.NORTH);


                setSize(width, height);

                setLocationRelativeTo(null);
                setDefaultCloseOperation(EXIT_ON_CLOSE);
        }

        public static void run()  {
                UserInterface gui=new UserInterface();
                gui.setVisible(true);
        }
}

class UserInterfacePanel extends JPanel {
            private JToggleButton startButton;
            private JToggleButton stopButton;

            private JButton homeStatusButton;
            private JLabel timeStatusLabel;

            public static void main(String[] args)  {

            }

            public UserInterfacePanel()  {
                setup();
            }

            private void setup()  {
                setLayout(new GridBagLayout());

                setupButtons();

                timeStatusLabel=new JLabel();
                timeStatusLabel.setMinimumSize(new Dimension(180,200));
                timeStatusLabel.setPreferredSize(new Dimension(180,200));
                timeStatusLabel.setBorder(BorderFactory.createLineBorder(Color.GRAY, 2));

                GridBagConstraints c1 = new GridBagConstraints();
                c1.fill = GridBagConstraints.HORIZONTAL;

                c1.weightx=0;
                c1.weighty=0;
                c1.anchor=GridBagConstraints.CENTER;
                c1.gridx=0;
                c1.gridy=0;
                c1.insets=new Insets(20, 20, 250, 50);
                add(homeStatusButton, c1);
                c1.gridx=1;
                c1.gridy=0;
                c1.insets=new Insets(0, 50, 10, 10);
                c1.weightx=1;
                add(timeStatusLabel, c1);


                GridBagConstraints c2=new GridBagConstraints();
                c2.insets=new Insets(30,20,30,20);
                c2.anchor=GridBagConstraints.CENTER;
                c2.weightx=0.0;
                c2.gridx=0;
                c2.gridy=1;
                add(startButton, c2);

                c2.gridx=1;
                c2.gridy=1;
                add(stopButton, c2);
            }

             private void setupButtons()  {  
                   startButton=new JToggleButton("Start Button");
                   stopButton=new JToggleButton("Stop Button");

                    homeStatusButton=new JButton("OUT");
                    homeStatusButton.setBackground(Color.RED);
                    homeStatusButton.setForeground(Color.BLACK);
                     homeStatusButton.setSize(new Dimension(100, 20));
             }
  }

我不明白为什么会这样。看起来我隐含地说明了按钮的位置以及标签的位置。为什么标签变大,按钮被推到左边。

but it's still too big of a label

您指定的大小为 (180, 200),附加插图为 (250, 50)。

too big of a push for the buttons

所有组件都使用约束,除非您每次将组件添加到面板时都重置约束。

所以标签的插图也用于按钮,除非您重置插图。

此外,请记住 GridBagLayout 会将组件放置在单元格中。所以第一列的单元格等于两个按钮的最大宽度。第二列的宽度将是标签的宽度,因为它是该列中最大的组件。

如果你想让start/stop个按钮在一起,那么先把它们添加到一个面板,然后再把按钮面板添加到GridBagLayout面板。