GridLayout
的默认行为是组件逐行填充,从左到右填充。我想知道我是否可以使用它以便组件由列填充(从左到右)?感谢。
答案 0 :(得分:5)
GridLayout管理器不支持此类用例。
我建议您查看GridBagLayout
,以便通过GridBagConstraints.gridx
和GridBagConstraints.gridy
设置位置。
(要获得类似于GridLayout
的行为,请务必设置权重并正确填充。)
答案 1 :(得分: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);
}
}
}
}
}
}
答案 2 :(得分:2)
使用单个GridLayout
无法实现此目的。但是,您可以拥有一行GridLayout
,每个单元格都有一个GridLayout
的单个列,其中包含多行。虽然使用像TableLayout
这样的不同LayoutManager可能是一个更容易的选择。
答案 3 :(得分: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也做了这一切。
答案 4 :(得分: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)
}
}