GridBagLayout不根据权重分配列

时间:2013-04-28 22:36:35

标签: java swing user-interface

这就是我的GUI现在的样子: enter image description here

我希望它能够平均分配三列。为此,我将每个权重设置为1/3。显然,它不起作用。

以下是我创建框架的代码:

public static JPanel createLayout(int rows) {
    JPanel product = new JPanel(new GridBagLayout());
    String[] lables = {"School    ", "Advanced #", "Novice #   "};
    double weight = .3333333333333;

    GridBagConstraints c = new GridBagConstraints();
    c.insets = new Insets(3, 3, 3, 3);
    c.weightx = weight;
    c.fill = GridBagConstraints.HORIZONTAL;
    c.anchor = GridBagConstraints.CENTER;
    c.gridy = 1;
    for (int j = 0; j < lables.length; j++) {
        c.gridx = j;
        JLabel l = new JLabel(lables[j]);
        product.add(l, c);
    }

    for (int i = 0; i < rows; i++) {
        c.gridy++;
        for (int j = 0; j < lables.length; j++) {
            c.gridx = j;
            JTextField f = new JTextField();
            product.add(f, c);
        }
    }
    c.gridy++;
    c.gridx = 0;
    c.anchor = GridBagConstraints.NORTHWEST;
    c.fill = GridBagConstraints.NONE;

    JPanel b = new JPanel();
    JButton add = new JButton("+");
    b.add(add);
    JButton delete = new JButton("-");
    b.add(delete);
    product.add(b, c);
    return product;
}
public static void main(String[] args) throws IOException {
    JFrame frame = new JFrame("Debate Calculator");
    JPanel debates = new JPanel();
    frame.add(createLayout(5), BorderLayout.NORTH);
    frame.pack();
    frame.setVisible(true);
}

2 个答案:

答案 0 :(得分:3)

问题是您的组件大小不一样。我无法准确解释它为什么会这样做,但是标签的大小各不相同,因为它们具有不同的字符数。我知道你试图制作相同的尺寸,但是“”和“W”不一样。

我更改了您的代码以使用以下内容,它似乎有效:

JTextField f = new JTextField(10);

现在每个文本字段的宽度都大于标签,因此这是用于为每列提供按比例大小的宽度。

您可以考虑使用GridLayout。默认行为是使每个单元格大小相同。

答案 1 :(得分:0)

问题是你底部的按钮栏。在该元素上将gridwidth设置为REMAINDER。