CompactCalendarView
CompactCalendarView copied to clipboard
Can i set circle background for events ?
Can i set circle background for events ? I want to set circle background instead of dot (event indicator style).
I was searching the same question and it appears that's possible! Use the following code snippet:
calendarView.setEventIndicatorStyle(FILL_LARGE_INDICATOR);
You can choose between those 3 options:
public static final int FILL_LARGE_INDICATOR = 1; public static final int NO_FILL_LARGE_INDICATOR = 2; public static final int SMALL_INDICATOR = 3;
FILL_LARGE_INDICATOR it's like today date selection, NO_FILL_LARGE_INDICATOR it's just a circle around the day and SMALL_INDICATOR it's the default one.
Hope it helps!