6

a 的默认行为GridLayout是逐行填充组件,从左到右。我想知道是否可以使用它使组件按列填充(从左到右)?谢谢。

4

5 回答 5

5

GridLayout 管理器不支持此类用例。

我建议您查看一下GridBagLayout,它允许您通过GridBagConstraints.gridxand设置位置GridBagConstraints.gridy

(要获得类似的行为,请GridLayout确保设置权重并正确填充。)

于 2011-06-30T12:36:56.477 回答
5

您可以扩展 GridLayout 并仅覆盖一种方法而不是int i = r * ncols + c;使用int i = c * nrows + r;我认为就足够了。

public void layoutContainer(Container parent) {
  synchronized (parent.getTreeLock()) {
    Insets insets = parent.getInsets();
    int ncomponents = parent.getComponentCount();
    int nrows = rows;
    int ncols = cols;
    boolean ltr = parent.getComponentOrientation().isLeftToRight();

    if (ncomponents == 0) {
        return;
    }
    if (nrows > 0) {
        ncols = (ncomponents + nrows - 1) / nrows;
    } else {
        nrows = (ncomponents + ncols - 1) / ncols;
    }
    int w = parent.width - (insets.left + insets.right);
    int h = parent.height - (insets.top + insets.bottom);
    w = (w - (ncols - 1) * hgap) / ncols;
    h = (h - (nrows - 1) * vgap) / nrows;

    if (ltr) {
        for (int c = 0, x = insets.left ; c < ncols ; c++, x += w + hgap) {
        for (int r = 0, y = insets.top ; r < nrows ; r++, y += h + vgap) {
            int i = r * ncols + c;
            if (i < ncomponents) {
            parent.getComponent(i).setBounds(x, y, w, h);
            }
        }
        }
    } else {
        for (int c = 0, x = parent.width - insets.right - w; c < ncols ; c++, x -= w + hgap) {
        for (int r = 0, y = insets.top ; r < nrows ; r++, y += h + vgap) {
            int i = r * ncols + c;
            if (i < ncomponents) {
            parent.getComponent(i).setBounds(x, y, w, h);
            }
        }
        }
    }
  }
}
于 2011-06-30T13:16:26.217 回答
2

您无法通过单个GridLayout. 但是,您可以有GridLayout一行,每个单元格都有一个GridLayout包含多行的单列。尽管使用不同的 LayoutManagerTableLayout可能是一个更容易的选择。

于 2011-06-30T12:39:30.660 回答
1

我建议您尝试MigLayout。您可以通过以下方式切换流向:

setLayout(new MigLayout("flowy"));
add(component1);
add(component2);
add(component3, "wrap");
add(component4);
add(component5);
add(component6);

使用 MigLayout 有很多方法可以实现这一点,我发现它比 GridBagLayout 使用起来更友好,而且功能同样强大,甚至更多。您将不再需要 BorderLayout、FlowLayout、BoxLayout 等,MigLayout 也可以做到。

于 2011-06-30T19:15:06.990 回答
0

您可以重新计算每个组件的位置:

Int row = ROWS;//amount of ROWS in the grid
Int col = COLUMs;//amount of COLUMS in the grid
Int x = i / row;// i is the component index(0,1,2,3...)
Int y = i - x * row;
Int position=col * x + y;
Panel.add(component, position);//the panel with gridlayout

您可能需要最初填充面板以避免在不存在的位置上出现 nullPointer:

For(i=0 to i= ROWS){
For(j =0 to j=columns){
Panel.add(new ...(random component)
}
}
于 2020-09-19T02:11:25.957 回答