Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Layout for label and button programmatically

I am trying to create a SpringLayout in Java, this is the code I have (got it from Oracle Java docs)

import javax.swing.*;
import java.awt.*;

public class SpringForm {

    private static void createAndShowGUI() {
        String[] labels = {"Side1: ", "Side2: ", "Side3: "};
        int numPairs = labels.length;
        //Create and populate the panel.
        JPanel p = new JPanel(new SpringLayout());
        javax.swing.JButton calculate_btn;
        calculate_btn = new javax.swing.JButton();             

        for (int i = 0; i < numPairs; i++) {
            JLabel l = new JLabel(labels[i], JLabel.TRAILING);
            p.add(l);
            JTextField textField = new JTextField(10);
            l.setLabelFor(textField);
            p.add(textField);
        }
        calculate_btn.setText("Calculate");
        p.add(calculate_btn);
        //Lay out the panel.
        SpringUtilities.makeCompactGrid(p,
            numPairs, 2, //rows, cols
            6, 6,        //initX, initY
            6, 6);       //xPad, yPad     
        //Create and set up the window.
        JFrame frame = new JFrame("Test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);     
        //Set up the content pane.
        p.setOpaque(true);  //content panes must be opaque
        frame.setContentPane(p);     
        //Display the window.
        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        //Schedule a job for the event-dispatching thread:
        //creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
            }
        });
    }
}

With the above code I am getting this

enter image description here

But in actual I am looking to get this

enter image description here

I DONOT MIND ANY OTHER LAYOUT! it's just that the oracle help shows that springlayout really close to my need I am trying to do is get the layout as below picture, I am not sure what is the layout used in the below, and also in my attempt I am using SpringLayout I noticed that the controls change their sizes automatically when we extend the window size I want to disable this but it kind of doesn't make sense as SpringLayout clearly means what it is doing, adjusting the controls, when we adjust the window

like image 403
noobprogrammer Avatar asked Oct 09 '12 07:10

noobprogrammer


1 Answers

From the Java trails of SpringLayout (pretty much the first line, actually):

The SpringLayout class was added in JDK version 1.4 to support layout in GUI builders. SpringLayout is a very flexible layout manager that can emulate many of the features of other layout managers. SpringLayout is, however, very low-level and as such you really should only use it with a GUI builder, rather than attempting to code a spring layout manager by hand. (Emphasis added.)

I've been programming professionally in Java for years now and even I won't program SpringLayout by hand. My recommendation is to use the MigLayout library instead. Their API is much simpler for layout-by-hand code and can produce very near-native layouts. I've been using it for a long time now, and I prefer it over anything else I've tried. It's especially nice when used in conjunction with Java's BorderLayout due to the way space-filling works. I highly recommend it.


First things first:

  1. MigLayout is cell-based, but also supports splitting and spanning cells. If you've ever worked with HTML or Excel, you should know what that means. It's pretty self-explanatory.
  2. MigLayout's default method of input is strings, and they're the simplest to understand, but they also have a very good API for creating layouts as well.
  3. MigLayout supports far more than I'll ever be able to cover in an SO question, so follow the link above and check out the quick start guide and cheat sheet. They're by far the best resource for what you can put in your constraints.

Here is an example using MigLayout to produce a similar layout to the example image you posted:

public static void main(String[] args) {
    JFrame frame = new JFrame("Testing MigLayout");
    JPanel contentPane = new JPanel(new MigLayout("fillx"));

    // Row 1
    JLabel areaLabel = new JLabel("Area of Triangle");
    areaLabel.setFont(areaLabel.getFont().deriveFont(16.0f));
    areaLabel.setHorizontalAlignment(JLabel.CENTER);
    contentPane.add(areaLabel, "spanx, growx, wrap");
    // wrap indicates a new row

    // Row 2
    JLabel side1Label = new JLabel("Side 1:");
    contentPane.add(side1Label, "alignx trailing");
    JTextField side1Field = new JTextField();
    side1Field.setColumns(6);
    contentPane.add(side1Field, "alignx leading, wrap");

    // Row 3
    JLabel side2Label = new JLabel("Side 2:");
    contentPane.add(side2Label, "alignx trailing");
    JTextField side2Field = new JTextField();
    side2Field.setColumns(6);
    contentPane.add(side2Field, "alignx leading, wrap");

    // Row 4
    JLabel side3Label = new JLabel("Side 3:");
    contentPane.add(side3Label, "alignx trailing");
    JTextField side3Field = new JTextField();
    side3Field.setColumns(6);
    contentPane.add(side3Field, "alignx leading, wrap");

    // Row 5
    JButton calculateButton = new JButton("Calculate Area");
    contentPane.add(calculateButton, "spanx, growx");

    frame.setContentPane(contentPane);
    // Resizes automatically
    frame.pack();
    // Centers automatically
    frame.setLocationRelativeTo(null);
    // Exit when the frame is closed
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    frame.setVisible(true);
}

And its output:

MigLayout Example

This is without all the logic, of course, but it still shows MigLayout's power. When you start getting into more complex applications and want components to expand and contract with the window, MigLayout does very well. If you've ever used GridBadLayout, you'll notice that MigLayout is just a suped up version of it.

For references about what all the individual pieces of this are, just look at the cheat sheet. There's an explanation for every piece I used. Specifically, anything declared in the MigLayout constructor (here, "fillx") is a layout constraint, and anything declared in the add methods (such as "spanx" and "wrap") are component constraints. There's more you can do with practice and experimentation to get just the right combination that creates an excellent GUI.

That being said, there's always other, simpler layout managers like GridLayout or BoxLayout. For simple applications like yours, those layout managers are perfectly fine. When you start getting into the more intensive applications, I recommend breaking into MigLayout. For reading up on those, I recommend the Java trails. There's a visual guide to layouts on there as well, and you can use that as a jumping-off point. I recommend sticking with these for layout-by-hand:

  • BorderLayout
  • BoxLayout
  • CardLayout
  • FlowLayout
  • GridBagLayout
  • GridLayout
like image 200
Brian Avatar answered Oct 19 '22 21:10

Brian