ExtendedCalendarView icon indicating copy to clipboard operation
ExtendedCalendarView copied to clipboard

First day of week error.

Open borjaruiz opened this issue 10 years ago • 1 comments

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?

borjaruiz avatar Dec 02 '14 12:12 borjaruiz

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) {

kennethkwok avatar Dec 18 '14 12:12 kennethkwok