| Package | Description |
|---|---|
| com.codename1.ui.layouts |
Layout managers allow a
Container to
arrange its components by a set of rules that adapt to specific
densities (ppi - pixels per inch). |
| Modifier and Type | Method and Description |
|---|---|
static BoxLayout |
BoxLayout.x()
Shorthand for
new BoxLayout(BoxLayout.X_AXIS) |
static BoxLayout |
BoxLayout.xCenter()
Creates a new layout with
X_AXIS, and align center. |
static BoxLayout |
BoxLayout.xRight()
Creates a new layout with
X_AXIS, and align right. |
static BoxLayout |
BoxLayout.y()
Shorthand for
new BoxLayout(BoxLayout.Y_AXIS) |
static BoxLayout |
BoxLayout.yBottom()
Creates a new layout with
Y_AXIS, and align bottom. |
static BoxLayout |
BoxLayout.yCenter()
Creates a new layout with
Y_AXIS, and align center. |
static BoxLayout |
BoxLayout.yLast()
Shorthand for
new BoxLayout(BoxLayout.Y_AXIS_BOTTOM_LAST) |
Copyright © 2022. All rights reserved.