You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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..
No description provided.
The text was updated successfully, but these errors were encountered: