devaige / DatePicker

Useful and powerful date picker for android
Apache License 2.0
1.86k stars 414 forks source link

current date showing wrong day #29

Closed pateelhs closed 8 years ago

pateelhs commented 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.

pateelhs commented 8 years ago

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;