CompactCalendarView icon indicating copy to clipboard operation
CompactCalendarView copied to clipboard

Can i set circle background for events ?

Open alisubhani313 opened this issue 5 years ago • 1 comments

Can i set circle background for events ? I want to set circle background instead of dot (event indicator style).

alisubhani313 avatar Jan 28 '20 08:01 alisubhani313

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!

IvanMazzoli avatar Mar 26 '20 22:03 IvanMazzoli