Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to set date in android WeekView library?

I want to implement android WeekView in my calendar application.For that i used this https://github.com/alamkanak/Android-Week-View library. Now the problem is i cant set date in that WeekView .

like image 525
User Code Avatar asked Mar 17 '15 11:03

User Code


2 Answers

Never tried it because I never used this lib, but looking at the code, it seems this does what you want :

public void goToDate(Calendar date)

There is also a convenience method to go straight to today :

public void goToToday()
like image 141
2Dee Avatar answered Oct 05 '22 08:10

2Dee


goToDate is deprecated use scrollToDate

like image 43
dqualias Avatar answered Oct 05 '22 10:10

dqualias