custom-calendar-view
custom-calendar-view copied to clipboard
Extract selected date,month and year to text views
trafficstars
Please help!!!!
A little late, but for future notice:
- Set up decorators like in instructions
- In decorate override, you have dayView which has getDate() method, which returns date.
- Since you cant get day month and year from date directly, you should cast date to calendar: Calendar calendar =Calendar.getInstance(); calendar.setTime(dayView.getDate());
And from there you can extract day year etc. Hope it helps someone else stuck here.