shrikanth7698 / Collapsible-Calendar-View-Android

Collapsible CalendarView is a simple calendar view which can be collapsed to save space and can be expanded when needed
https://shrikanth7698.github.io/Collapsible-Calendar-View-Android/
MIT License
431 stars 122 forks source link

on Button click change date next and previous #42

Closed Yagnesh123456 closed 4 years ago

Yagnesh123456 commented 5 years ago

on Button click change date next and previous now we can click on date get selected date but i want my custom button perform next and previous date how to get programmatically date next and previous
on next button click get Tomorrows date and click on previous button gets yesterdays date

like today date 04-05-2019 so now click on next button click get date 05-05-2019 or click on previous button click get date 03-05-2019

this next and previous button is my Button widgets button

Thank you in advance and sorry for my English

tejaschavan21 commented 5 years ago

@Yagnesh123456 if You just want to shift the date to prev and next to current(today's) date then you can call/use CollapsableCalendar.select(Day day) method where you can send next day or previous day date. Here Day is nothing but a model class, while initialising you can send (year, month, day) to constructor.