AndroidListView¶
Android ListView.
Extends AndroidObject
Behavior Pattern: AndroidObjectListViewSelectableBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
ItemIndexByName | Returns item index by its name. | GetItemIndexByName |
Action Summary¶
Action | Description |
---|---|
DoSelectItem | Selects an item with the specified index. |
Property Detail¶
ItemIndexByName¶
Returns item index by its name. 'false' if name is not found.
Getter Parameters:
Name | Type | Description |
---|---|---|
name | string |
Type: number|boolean
Accessors: GetItemIndexByName
value = SeS('SomeAndroidListView').GetItemIndexByName(name)
Action Detail¶
DoSelectItem¶
Selects an item with the specified index.
SeS('SomeAndroidListView').DoSelectItem(index)
Parameters:
Name | Type | Description |
---|---|---|
index | number | Item index. |
Returns:
boolean: 'true' if success, 'false' otherwise.