public
static
interface
NumberPicker.OnValueChangeListener
android.widget.NumberPicker.OnValueChangeListener |
Interface to listen for changes of the current value.
Public methods | |
---|---|
abstract
void
|
onValueChange(NumberPicker picker, int oldVal, int newVal)
Called upon a change of the current value. |
void onValueChange (NumberPicker picker, int oldVal, int newVal)
Called upon a change of the current value.
Parameters | |
---|---|
picker |
NumberPicker :
The NumberPicker associated with this listener. |
oldVal |
int :
The previous value. |
newVal |
int :
The new value.
|