Open hasancse91 opened 7 years ago
I want to show only February 2016 using this Library. My code is:
widget.state().edit() .setMinimumDate(CalendarDay.from(2016, 1, 1)) // 1st February, 2016 .setMaximumDate(CalendarDay.from(2016, 1, 29)) // 29th February, 2016 .commit();
Information of days and dates are fine. But on the Header section it always shows "January 2017" (current month, year). I think it's a bug. If not, please give me a suggestion to show any specific month of any year.
Same problem here! Edit: materialCalendarView.setCurrentDate(dateEnd); fixed it temporarily
I fixed this problem manually with a TextView instead of the library header.
I want to show only February 2016 using this Library. My code is:
widget.state().edit() .setMinimumDate(CalendarDay.from(2016, 1, 1)) // 1st February, 2016 .setMaximumDate(CalendarDay.from(2016, 1, 29)) // 29th February, 2016 .commit();
Information of days and dates are fine. But on the Header section it always shows "January 2017" (current month, year). I think it's a bug. If not, please give me a suggestion to show any specific month of any year.