material-calendarview
material-calendarview copied to clipboard
change week color
You currently cannot customize specific weekdays, only weekdays as a whole.
.setWeekDayTextAppearance(custom style)
You can do it this way!
activity_main.xml
app:mcv_weekDayLabels="@array/weekdays_custom"
strings.xml
<string name="sunday"><font color="#fb5046">S</font></string>
<array name="weekdays_custom">
<item>M</item>
<item>T</item>
<item>W</item>
<item>T</item>
<item>F</item>
<item>S</item>
<item>@string/sunday</item>
</array>