是否可以“重置”MigLayout

时间:2013-07-31 18:05:36

标签: java swing layout user-interface miglayout

我是MigLayout的新手。我正在尝试创建一个类似于此的布局:

enter image description here

有一排等间距的按钮,后面是一行,其中列表跨越所有列并且增长以填充可用的垂直空间,然后是最后一行,其中包含更多控件。

我可以毫不费力地获得前两行。

但是,当我添加最后一行的内容时,MigLayout(正确地)会尝试保留前两行的列。我留下了类似的东西:

enter image description here

最后一行中的标签和微调器扩展了列的宽度,并且在顶行中留下了不均匀的间隙。

有没有办法告诉MigLayout我想忘记到目前为止建立的行/列并“开始新鲜”,或者这里是创建嵌套布局的解决方案?

这是一个完整的示例面板。

public class TestPanel extends JPanel {

    JButton button1 = new JButton("Button 1");
    JButton button2 = new JButton("Button 2");
    JButton button3 = new JButton("Button 3");
    JButton button4 = new JButton("Button 4");
    JButton button5 = new JButton("Button 5");

    JList list = new JList(new String[]{"some", "fake", "data"});

    JLabel label = new JLabel("this is my long label");
    JSpinner spinner = new JSpinner();
    JCheckBox checkbox = new JCheckBox("Check me");

    public TestPanel() {
        initComponents();
    }

    private void initComponents() {

        setLayout(new MigLayout());

        add(button1);
        add(button2);
        add(button3);
        add(button4);
        add(button5, "wrap");

        add(list, "span, growx, growy, wrap");

        // without these 3 lines, the row of buttons are equally spaced
        // adding the long label extends the width of the first column
        add(label);
        add(spinner);
        add(checkbox, "span, align right");
    }
}

1 个答案:

答案 0 :(得分:2)

我能够通过合并和分割单元格来实现所需的布局。

setLayout(new MigLayout());
add(button1);
add(button2);
add(button3);
add(button4);
add(button5, "wrap");
add(list, "span, growx, growy, wrap");

// merge 4 cells then split the combined cell in half
// label goes in the first cell of the split
// spinner goes in the second cell of the split
add(label, "span 4, split 2);
add(spinner);
// check box goes in the 5th and final cell of the row (after the 4 merged cells)
add(checkBox, "align right");

结果如下:

enter image description here