I\'m debugging an issue where the CalendarView in a DatePicker moves to October 1964 if there is a non-default minimum date set. This reproduces at
CalendarView
DatePicker
The solution that I ended up using:
private void fixBuggyCalendarview(CalendarView cv) { long current = cv.getDate(); cv.setDate(cv.getMaxDate(), false, true); cv.setDate(current, false, true); }
This also works when you have set min/max date for the CalendarView