Package com.sun.lwuit.layouts

Layout managers allow a Container to arrange its components by a set of rules that would be adapted for specific screen/font sizes.

See:
          Description

Class Summary
BorderLayout A border layout lays out a container, arranging and resizing its components to fit in five regions: north, south, east, west, and center.
BoxLayout Layout manager that places elements in a row or column according to box orientation
CoordinateLayout Allows laying out components based on absolute positions/sizes that are adapted based on available space for the layout.
FlowLayout Flows elements in a row so they can spill over when reaching line end
GridLayout Components are arranged in an equally sized grid based on available space
GroupLayout GroupLayout is a LayoutManager that hierarchically groups components to achieve common, and not so common, layouts.
LayeredLayout Allows placing components one on top of the other like a stack, this layout effectively allows us to build a UI of overlapping components.
Layout Abstract class that can be used to arrange components in a container using a predefined algorithm.
LayoutStyle LayoutStyle is used to determine how much space to place between components during layout.
 

Package com.sun.lwuit.layouts Description

Layout managers allow a Container to arrange its components by a set of rules that would be adapted for specific screen/font sizes. A layout manager is an arranging algorithm encapsulated by an interface, the interface implementation places components absolutely based on "hints" received.