Using multiple DotSpan's in MaterialCalendarView
Is there any way of attaching more than 1 DotSpan's to a date with Android MaterialCalendarView? Altough I have 2 DotSpan's added to my CalendarView it's still displaying only 1 DotSpan... I'm using the following code: @Override public boolean shouldDecorate(CalendarDay day) { day.copyTo(calendar); for (int i = 0; i < weekDayStrTmp.size(); i++) { if (weekDayStrTmp.contains(day)) { return true; } else { return false; } } return false; } @Override public void decorate(DayViewFacade view) { view.addSpan(new DotSpan(8, myContext.getResources().getColor(R.color.myColor3))); view.addSpan(new DotSpan