public
static
interface
CalendarView.OnDateChangeListener
| android.widget.CalendarView.OnDateChangeListener |
The callback used to indicate the user changes the date.
Public methods | |
|---|---|
abstract
void
|
onSelectedDayChange(CalendarView view, int year, int month, int dayOfMonth)
Called upon change of the selected day. |
void onSelectedDayChange (CalendarView view, int year, int month, int dayOfMonth)
Called upon change of the selected day.
| Parameters | |
|---|---|
view |
CalendarView:
The view associated with this listener. |
year |
int:
The year that was set. |
month |
int:
The month that was set [0-11]. |
dayOfMonth |
int:
The day of the month that was set.
|