| Package | Description |
|---|---|
| com.codename1.components |
Generic elaborate components that make use of both UI elements and storage.
|
| com.codename1.contacts |
Provides access to the contacts list from the device address book
|
| com.codename1.ui.list |
Lists are highly customizable and serve as the basis for
ComboBox and
other components (such as carousels etc) they employ a similar MVC approach to
Swing including the renderer pattern, notice that we strongly
discourage usage of lists...ListCellRenderer
allows us to customize the appearance of a list entry, it works as a
"rubber stamp" by drawing the rendered component and discarding its state thus
allowing very large lists with very little component state overhead. |
| Modifier and Type | Method and Description |
|---|---|
MultipleSelectionListModel |
ButtonList.getMultiListModel()
For multi-selection models (e.g.
|
| Constructor and Description |
|---|
CheckBoxList(MultipleSelectionListModel model) |
SwitchList(MultipleSelectionListModel model) |
| Modifier and Type | Class and Description |
|---|---|
class |
ContactsModel
This Contacts model is responsible for querying Contacts from the device
and to cache the data for faster usage
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultListModel<T>
Default implementation of the list model based on a
List of elements. |
Copyright © 2021. All rights reserved.