alamkanak / Android-Week-View

Android Week View is an android library to display calendars (week view or day view) within the app. It supports custom styling.
Apache License 2.0
3.42k stars 1.23k forks source link

How to navigate to particular date #569

Open rockstarsantosh1994 opened 3 years ago

rockstarsantosh1994 commented 3 years ago

Hello Sir,

         How to navigate to a particular date to check the event. 

Thanks & Regards, Santosh Pardeshi

aliesenli commented 3 years ago

@rockstarsantosh1994 Simply by using the built in method goToDate()

private WeekView weekView;

Calendar selectedDate = Calendar.getInstance();
selectedDate.set(2021, 2, 2 , 0, 0, 0); 

weekView.goToDate(selectedDate)