The layout of Item
s within a Form
is
organized around rows. The maximum width of all rows within a Form
is
the same and does not vary based on the Item
s contained
within the Form
. If a Form
exceeds
the height of the screen it grows vertically and vertical scrolling is used
by the user to view further content. If the content exceeds the screen width,
it is either wrapped (text) or cropped (images) to the available space.
The height of the rows can vary depending on the Item
s
positioned in the row. If the first / last Item in a
Form
is
a Spacer
larger than the size of the screen then as much
of the Spacer
as necessary is ignored in order to start
or end the Form
with the first or last visible Item
being
completely in view.
Item |
Key event |
Behavior |
---|---|---|
|
Up, down, left, right arrow keys |
Moves cursor in editor.
|
Interactive |
Left, right arrow keys |
Modifies |
Interactive |
Up, down keys |
Does focus traversal out of the |
|
Left, right arrow keys |
Changes between
|
|
Up, down keys |
Does focus traversal out of the
|
|
Left, right arrow keys |
Do not move focus at all. |
|
Up, down arrow keys |
Moves focus inside the |
The following characters add a line break:
Line separator |
New-line escape (Java source code) |
Unicode values |
---|---|---|
CRLF (Carriage return + Line feed) |
\r\n |
U+000D, U+000A |
LF (Line feed) |
\n |
U+000A |
CR (Carriage return) |
\r |
U+000D |
LS (Line separator, Unicode only) |
\u2028 |
U+2028 |
For information on Form Item
implementation in
Touch UI -enabled devices, see section Displayables
and commands.