public
static
interface
DatePicker.OnDateChangedListener
android.widget.DatePicker.OnDateChangedListener |
Known Indirect Subclasses |
The callback used to indicate the user changed the date.
Public methods | |
---|---|
abstract
void
|
onDateChanged(DatePicker view, int year, int monthOfYear, int dayOfMonth)
Called upon a date change. |
void onDateChanged (DatePicker view, int year, int monthOfYear, int dayOfMonth)
Called upon a date change.
Parameters | |
---|---|
view |
DatePicker :
The view associated with this listener. |
year |
int :
The year that was set. |
monthOfYear |
int :
The month that was set (0-11) for compatibility
with Calendar . |
dayOfMonth |
int :
The day of the month that was set.
|