使用以下代码,我想创建一个Jpanel泛型组件并添加两个子组件,Label和JTextField。我要添加组件,但它们没有保持对齐。
(不,我不需要GridBagLayout,但我试图用GridBag做一个基本的例子。你能描述一下如何用GridBag而不是另一个布局)。
public Component buildStatusComponent() {
// Place the components on one line //
final GridBagLayout layout = new GridBagLayout();
final GridBagConstraints constraints = new GridBagConstraints();
final JPanel group = new JPanel(layout);
constraints.anchor = GridBagConstraints.WEST;
constraints.gridx = 0;
constraints.fill = GridBagConstraints.NONE;
group.setAlignmentX(JComponent.LEFT_ALIGNMENT);
group.add(new JLabel("Messages: "), constraints);
constraints.gridx = 1;
constraints.fill = GridBagConstraints.HORIZONTAL;
group.add(this.statusArea, constraints);
return group;
}
高于这个级别,我只是添加JPanel并水平填充。
constraints.gridy++;
constraints.fill = GridBagConstraints.HORIZONTAL;
this.add(this.buildStatusComponent(), constraints);
答案 0 :(得分:1)
您似乎没有完全使用GridBagConstraints。而不是键入group.setAlignmentX(JComponent.LEFT_ALIGNMENT)(我似乎从来没有为任何事情工作哈哈)只需使用contraints.anchor = GridBagConstraints.WEST。
很多人不喜欢GridBagLayout,但是一旦你理解了它的工作方式,我觉得它很容易使用。最难处理的是网格中对象的权重。
但是特别是对于这个问题,你只想用GridBagConstraint常量将一个组件锚定到一边,并依赖于约束类来控制事物的去向。
编辑:好的,然后给他们重量。 (虽然这可能无法解决问题嘿嘿)constraints.weightx = 1d;
发生的事情是,所有东西都具有相同的重量,所以我相信它的间距是均匀的。如果你想“填充”项目,你可以在最后一个组件后面添加一个空的JPanel并设置fill = REMAINDER并将其设置为权重1,其他组件为权重0.权重排序决定一个组件可以推送多少'围绕另一个人。
GridBagConstraints gbc = new GridBagConstraints();
JPanel p = new JPanel(new GridBagLayout());
gbc.gridx = 0;
gbc.gridy = 0;
gbc.anchor = GridBagConstraints.WEST;
p.add(new JLabel("A"), gbc);
gbc.gridx++;
p.add(new JLabel("B"), gbc);
gbc.gridx++;
gbc.weightx = 1d;
gbc.fill = GridBagConstraints.REMAINDER;
p.add(new JPanel(), gbc);
gbc.fill = GridBagConstraints.NONE;
gbc.weightx = 0d;
.... continue on filling stuff...
这是处理它的一种方法。稍微玩一下,直到你感觉它的工作原理是好的。
答案 1 :(得分:0)
发布一些随机代码行的问题是我们不知道代码的使用方式。
Swing教程中有关如何使用GridBagLayout的部分解释了为什么使用weightx约束非常重要。由于您的父和子面板都使用GridBagLayout,我们无法分辨问题所在。
如果您需要更多帮助,请发布展示问题的SSCCE。