I have this layout using GridBagLayout
:
public class Example extends JFrame {
public Example() {
Border outline = BorderFactory.createLineBorder(Color.black);
GridBagLayout gbl = new GridBagLayout();
GridBagConstraints gbc = new GridBagConstraints();
JPanel pane = new JPanel(gbl);
gbc.weighty = 1.0;
gbc.weightx = 1.0;
JLabel unitLbl = new JLabel("Unit");
unitLbl.setBorder(outline);
gbc.gridx = 0;
gbc.gridy = 0;
gbc.ipadx = 30;
gbc.ipady = 10;
gbl.setConstraints(unitLbl, gbc);
pane.add(unitLbl);
JLabel typeLbl = new JLabel("Type");
typeLbl.setBorder(outline);
gbc.gridx = 0;
gbc.gridy = 1;
gbc.ipadx = 30;
gbc.ipady = 10;
gbl.setConstraints(typeLbl, gbc);
pane.add(typeLbl);
JTextField unitField = new JTextField();
typeLbl.setBorder(outline);
gbc.gridx = 1;
gbc.gridy = 0;
gbc.ipadx = 30;
gbc.ipady = 10;
gbl.setConstraints(unitField, gbc);
pane.add(unitField);
String[] type = {"All", "Verb", "Noun", "Adjective"};
JComboBox<String> comboBox = new JComboBox<String>(type);
gbc.gridx = 1;
gbc.gridy = 1;
gbc.ipadx = 30;
gbc.ipady = 10;
gbl.setConstraints(comboBox, gbc);
pane.add(comboBox);
add(pane, BorderLayout.CENTER);
setSize(new Dimension(400, 300));
getContentPane().setBackground(Color.WHITE);
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Example();
}
});
}
}
In this example, when run, It seems that every component is at the center of the frame. But what I want is :
- Two
JLabel
(unitLbl
andtypelbl
) will be on the left of frame JTextField
andJComboBox
will be on the right of twoJLabel
, respectively with a small distance between.- Moreover, I want to add a new
JButton
at location (3,0) of the grid, but the height of this location sum of twoJLabel
height. It means, this button height is on "two line".
How can I fix this code to achieve this goal ? Please help me.
Thanks :)
Something like this should do the trick:
weightx/weighty
(how is the extra horizontal/vertical space redistributed)fill
attribute (is the component stretched vertically/horizontally/both?)anchor
attribute (if the component is not stretched, or at least not in both direction, where should it be located within its cell)insets
overipadx/ipady
(extra white-space should be added around the component or inside the component)Some answers:
Put the anchor for unitlbl to WEST.
And the anchor for unitField to EAST.
And for the button:
You want to use
GridBagConsraints#anchor
to define the position within the cell that you want to align the component to.To allow a component to span over number of cells, you want to use
GridBagConstraints#gridwidth
andGridBagConstraints#gridheight
(the default is 1)