There is an event listener in Android called DatePicker.OnDateChangedListener. I am trying to set a DatePicker view\'s on date changed listener as follows:
This view is in fact a combination of four views, and they are :
Three Spinners
One CalendarView
As of the OnDateChangeListener, the object you passed in to the init method will be simply passed to the contained CalendarView, and I believe that you know that there is a setOnDateChangeListener method in the good old CalendarView...... ......
In the DatePicker class, there is a method called the getCalendarView, and it is the method you can call if you want to get your hands on the contained CalendarView.
Once you get your hands on the contained CalendarView, then, needlessly to say, you can call its setOnDateChangeListener