CosmoCalendar icon indicating copy to clipboard operation
CosmoCalendar copied to clipboard

Weekend days wont change

Open CristiDospra opened this issue 7 years ago • 1 comments

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

CristiDospra avatar Aug 17 '18 13:08 CristiDospra

    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;

viniciusgati avatar Apr 02 '19 20:04 viniciusgati