Search code examples
androidcalendarview

How to extend CalendarView to allow selection of multiple dates?


I want to show a user with a calendar where multiple dates are selected.

While this could be easily achieved using Material Calendar View but I prefer not to use dependency for this simple task.

How could I achieve this by extending android CalendarView?

Please help


Solution

  • I would refer you to a comment on How to highlight multiple dates in Android CalendarView.

    It basically says CalendarView does not support this, and that the point of CalendarView is to allow the user to choose a date.

    Good luck!