public static SwipePicker.OnStateChangeListener
| Modifier and Type | Interface and Description |
|---|---|
static class |
OnStateChangeListener.DefaultImpls |
| Modifier and Type | Method and Description |
|---|---|
void |
onActivated(SwipePicker view,
boolean isActivated)
The listener is called every time the activation state changes.
|
void |
onPressed(SwipePicker view,
boolean isPressed)
The listener is called every time the pressed state changes.
|
void |
onSelected(SwipePicker view,
boolean isSelected)
The listener is called every time the selection state changes.
|
void onActivated(SwipePicker view, boolean isActivated)
The listener is called every time the activation state changes.
view - SwipePicker of initiating event.isActivated - Current activated state.void onSelected(SwipePicker view, boolean isSelected)
The listener is called every time the selection state changes.
view - SwipePicker of initiating event.isSelected - Current selected state.void onPressed(SwipePicker view, boolean isPressed)
The listener is called every time the pressed state changes.
view - SwipePicker of initiating event.isPressed - Current pressed state.