ExtendedCalendarView
ExtendedCalendarView copied to clipboard
First day of week error.
I wanted monday as first column day so I've tried changing the first day to 1 instead of 0, what I get is that march 2015 has 32 days. Why?
I solved this issue by using the solution posted here - https://github.com/tyczj/ExtendedCalendarView/issues/48
And also changing the following j != 1 to j != 7 as seen below: if (j > 0 && dayList.size() > 0 && j != 7) {