CosmoCalendar
CosmoCalendar copied to clipboard
Weekend days wont change
Hi, i have a problem when trying to set weekend days. Doesn't matter what days or how many days I add into the hashSet, nothing will change
calendarView.setWeekendDays(new HashSet(){{
add(WeekDay.SUNDAY);
add(WeekDay.SATURDAY);
}});
I have this working fine, the point to pay attention is that the day comes from WeekDay class not Calendar class.
use:
import com.applikeysolutions.cosmocalendar.utils.WeekDay;