| Package | Description |
|---|---|
| com.codename1.components |
Generic elaborate components that make use of both UI elements and storage.
|
| com.codename1.ui |
Main widget package containing the component/container "composite" similar
both in terminology and design to Swing/AWT.
|
| com.codename1.ui.html |
This package is deprecated and used only for legacy support, use the WebBrowser component
from the components package.
|
| 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 |
|---|---|
void |
Ads.dataChanged(int type,
int index,
HTMLComponent htmlC,
TextField textField,
HTMLElement element)
Deprecated.
Called when the user types in a TextField inside the HTMLComponent
This method will be called only if HTMLComponent.isEventsEnabled() is true
|
| Modifier and Type | Class and Description |
|---|---|
class |
AutoCompleteTextField
An editable
TextField with completion suggestions
that show up in a drop down menu while the user types in text. |
| Modifier and Type | Method and Description |
|---|---|
TextField |
TextComponent.getField()
Allows us to invoke setters/getters and bind listeners to the text field
|
TextField |
AutoCompleteTextComponent.getField()
Allows us to invoke setters/getters and bind listeners to the text field
|
| Modifier and Type | Method and Description |
|---|---|
void |
HTMLCallback.dataChanged(int type,
int index,
HTMLComponent htmlC,
TextField textField,
HTMLElement element)
Called when the user types in a TextField inside the HTMLComponent
This method will be called only if HTMLComponent.isEventsEnabled() is true
|
void |
DefaultHTMLCallback.dataChanged(int type,
int index,
HTMLComponent htmlC,
TextField textField,
HTMLElement element)
{Called when the user types in a TextField inside the HTMLComponent
This method will be called only if HTMLComponent.isEventsEnabled() is true}
|
| Modifier and Type | Method and Description |
|---|---|
static void |
FilterProxyListModel.install(TextField search,
ContainerList l)
Installs a search field on a list making sure the filter method is invoked properly
|
static void |
FilterProxyListModel.install(TextField search,
List l)
Installs a search field on a list making sure the filter method is invoked properly
|
Copyright © 2021. All rights reserved.