I need to search my database basing the query on the month returned from a CalendarView. My problem is that onSelectedDayChange() event fires only when clicking, actually selecting a date not when the month is changed by swiping CalendarView. How to set up something like "onSelectedMonthChange"?
Android CalendarView how to detect Month change
3.3k Views Asked by alberto At
2
You can't do it with the Android
CalendarView
. Look at this thread.If you want to do it, you will have to make custom
CalendarView
class which willextend
CalendarView
and implementonGestureListener
. Keep a variablecurMonth
to keep account of your month. Whenever swipe left/right happen, update yourmonth
variable accordingly.