android-collapse-calendar-view
android-collapse-calendar-view copied to clipboard
How to have calendar without min date and max date ?
At the moment that is not possible.
Do you have an idea for me to develop it?
I Have Got the Solution...
Open MainActivity
REPLACE BELOW LINE:
CalendarManager manager = new CalendarManager(LocalDate.now(), CalendarManager.State.MONTH, LocalDate.now(), LocalDate.now().plusYears(1));
WITH THIS : final CalendarManager manager = new CalendarManager(LocalDate.now(), CalendarManager.State.MONTH, LocalDate.now().minusYears(1), LocalDate.now().plusYears(1));
look at the 3rd and 4th parameters of CalendarManager, you just need to change that values to
LocalDate.now().minusYears(1), LocalDate.now().plusYears(1)
like this thats it..