My background is black , so I want the day text is white , and I can't find the function like "textSize" or "textColor"
I am SORRY I asked a so foolish question,Now I found it.
And thanks for your beautiful Calendar!
@TokyoAndroid How did you change calendar text color?
@nAkhmedov
Check this code sample:
@Override
public void decorate(DayViewFacade view) {
view.addSpan(new ForegroundColorSpan(Color.RED));
//set any color which are mentioned in your color.xml file
// view.addSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.your_color)));
}