About

LayoutManager is the Java interface for classes that know how to layout the contents of Container. The typical containers include JPanel for Swing and Panel for AWT but many others (like Window) are possible.

Layout manager layouts container components following rules that are different for each implementation. For instance, GridLayout arranges them in a table-like way when BorderLayout places one into center and up till four others at the each edge. Layout manager often calls getPreferredSize on the component to know how much space it would need.

If the layout manager of some particular component is set to null, components can be positioned in arbitrary way by setting they bounds manually.

Relevant tutorials:

history|show excerpt|excerpt history