LCDUI Lists contain one row textual items, with optional additional icons. In general, informative icons should be displayed to the left of the text. The icon positions are mirrored for right-to-left languages. You can only use one list item type (IMPLICIT, MULTIPLE, EXCLUSIVE) for each list.
For grid layout, there is a template in the SDK.
Implicit list
|
List.IMPLICIT: - Short item title is recommended.
- Text wrapping and truncation is supported for the item titles.
- Action is triggered with touch release.
- Recommended for drill down view navigation.
|
Multiple selection list
List.MULTIPLE:
- Short item title is recommended.
- Text wrapping and truncation is supported for the item titles.
- Selected items have a highlight over the entire line; no check boxes are used.
- Tapping on an item toggles the state of selection.
- Ensure that there is a way to confirm the selection, e.g. with 'Done' Command.
Exclusive selection list
|
List.EXCLUSIVE: - Short item title is recommended.
- Text wrapping and truncation is supported for the item titles.
- Selected item has a highlight over the entire line; no radio buttons are used.
- Tapping on another item removes the previous selection.
- Ensure that there is a way to confirm the selection, e.g. with 'Done' Command.
- Recommended to be used for "wizards" where the user is moving through multiple separate views; the Command button at the bottom of the view would move the user to the next wizard page.
- For most cases of single selection, ChoiceGroup type POPUP is more suitable.
|
Grid layout
You can create grid layout with the Grid UI template found from the SDK.