How to add components with a Relative X Position in Java


To add components with a relative X position, use the GridBagConstraints.RELATIVE constant. Set this to gridx field −

GridBagConstraints constraints = new GridBagConstraints();
constraints.gridx = GridBagConstraints.RELATIVE;

The following is an example to add components with a relative X position in Java −

Example

package my;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class SwingDemo {
   public static void main(String[] args) {
      JFrame frame = new JFrame();
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      JPanel panel = new JPanel();
      panel.setLayout(new GridBagLayout());
      GridBagConstraints constraints = new GridBagConstraints();
      constraints.gridy = 0;
      panel.add(new JButton("First row"), constraints);
      constraints.gridx = GridBagConstraints.RELATIVE;
      constraints.gridy = 1;
      panel.add(new JButton("2nd row 1st column"), constraints);
      panel.add(new JButton("2nd row 2nd column"), constraints);
      frame.add(panel);
      frame.setSize(550, 300);
      frame.setVisible(true);
   }
}

Output

Updated on: 30-Jul-2019

351 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements