SundeepK / CompactCalendarView

An android library which provides a compact calendar view much like the one used in google calenders.
MIT License
1.52k stars 427 forks source link

Can i set circle background for events ? #344

Open alisubhani313 opened 4 years ago

alisubhani313 commented 4 years ago

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

IvanMazzoli commented 4 years ago

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_LARGEINDICATOR it's like today date selection, _NO_FILL_LARGEINDICATOR it's just a circle around the day and _SMALLINDICATOR it's the default one.

Hope it helps!