Closed pateelhs closed 8 years ago
here the date and actual day is not in sync. for example 2016-0-6-13 is monday. and its showing Tuesday.
Finally able fix this by changing the abstract class DPCalender.java
int dayOfWeek = c.get(Calendar.DAY_OF_WEEK) - Calendar.SUNDAY;
to
int dayOfWeek = c.get(Calendar.DAY_OF_WEEK) - Calendar.MONDAY;
here the date and actual day is not in sync. for example 2016-0-6-13 is monday. and its showing Tuesday.