CalendarListview
CalendarListview copied to clipboard
Calendar Not Displayed
The GitHub demo is not displaying Calendar. It is not giving any error or exceptions. I am using Android 4.3.
have the same issue
Change year to 2017 It works.
@Joe4545 changed the year to 2017, but still it aint working
I have the same issue by using Android 4.2
add the following code, and then Calendar shows DayPickerView dayPickerView = (DayPickerView) findViewById(R.id.calendar_picker); dayPickerView.setController(this);
@cooldyj I have added the code,but it still doesn't work.
I solved it!! Modify the follwing code:
@Override
public int getMaxYear() {
return 2017;
}
The max year should be bigger than your system year!
The max year should be bigger than your system year! thx!