java.awt

Class GridLayout

  • java.lang.Object
    • java.awt.GridLayout
  • All Implemented Interfaces:
    LayoutManager, java.io.Serializable
    public class GridLayout extends java.lang.Object implements LayoutManager, java.io.Serializable
    The GridLayout class is a layout manager that lays out a container's components in a rectangular grid. The container is divided into equal-sized rectangles, and one component is placed in each rectangle. For example, the following is an applet that lays out six buttons into three rows and two columns:


     import java.awt.*;
     import java.applet.Applet;
     public class ButtonGrid extends Applet {
         public void init() {
             setLayout(new GridLayout(3,2));
             add(new Button("1"));
             add(new Button("2"));
             add(new Button("3"));
             add(new Button("4"));
             add(new Button("5"));
             add(new Button("6"));
         }
     }
     

    If the container's ComponentOrientation property is horizontal and left-to-right, the above example produces the output shown in Figure 1. If the container's ComponentOrientation property is horizontal and right-to-left, the example produces the output shown in Figure 2.

    Shows 6 buttons in rows of 2. Row 1 shows buttons 1 then 2.
 Row 2 shows buttons 3 then 4. Row 3 shows buttons 5 then 6. Shows 6 buttons in rows of 2. Row 1 shows buttons 2 then 1.
 Row 2 shows buttons 4 then 3. Row 3 shows buttons 6 then 5.
    Figure 1: Horizontal, Left-to-Right Figure 2: Horizontal, Right-to-Left

    When both the number of rows and the number of columns have been set to non-zero values, either by a constructor or by the setRows and setColumns methods, the number of columns specified is ignored. Instead, the number of columns is determined from the specified number of rows and the total number of components in the layout. So, for example, if three rows and two columns have been specified and nine components are added to the layout, they will be displayed as three rows of three columns. Specifying the number of columns affects the layout only when the number of rows is set to zero.

    Since:
    JDK1.0
    See Also:
    Serialized Form
    • Constructors 
      Constructor and Description
      Ordinary member indicator GridLayout Reveal DetailHide Detail
      Creates a grid layout with a default of one column per component, in a single row.
      Ordinary member indicator GridLayout Reveal DetailHide Detail
      Creates a grid layout with the specified number of rows and columns.
      Ordinary member indicator GridLayout Reveal DetailHide Detail
      Creates a grid layout with the specified number of rows and columns.
    • Methods 
      Modifier and Type Method and Description
      Ordinary member indicator addLayoutComponent Reveal DetailHide Detail
      Adds the specified component with the specified name to the layout.
      Ordinary member indicator getColumns Reveal DetailHide Detail
      Gets the number of columns in this layout.
      Ordinary member indicator getHgap Reveal DetailHide Detail
      Gets the horizontal gap between components.
      Ordinary member indicator getRows Reveal DetailHide Detail
      Gets the number of rows in this layout.
      Ordinary member indicator getVgap Reveal DetailHide Detail
      Gets the vertical gap between components.
      Ordinary member indicator layoutContainer Reveal DetailHide Detail
      Lays out the specified container using this layout.
      Ordinary member indicator minimumLayoutSize Reveal DetailHide Detail
      Determines the minimum size of the container argument using this grid layout.
      Ordinary member indicator preferredLayoutSize Reveal DetailHide Detail
      Determines the preferred size of the container argument using this grid layout.
      Ordinary member indicator removeLayoutComponent Reveal DetailHide Detail
      Removes the specified component from the layout.
      Ordinary member indicator setColumns Reveal DetailHide Detail
      Sets the number of columns in this layout to the specified value.
      Ordinary member indicator setHgap Reveal DetailHide Detail
      Sets the horizontal gap between components to the specified value.
      Ordinary member indicator setRows Reveal DetailHide Detail
      Sets the number of rows in this layout to the specified value.
      Ordinary member indicator setVgap Reveal DetailHide Detail
      Sets the vertical gap between components to the specified value.
      Overridden member indicator toString Reveal DetailHide Detail
      Returns the string representation of this grid layout's values.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
This document was created by Dulcet from the OpenJDK sources. Copyright © 1993, 2012 Oracle and/or its affiliates. All rights reserved.

SourceForge