SpongeBobSun / mCalendarView

Customizable & Shrinkable Calendar Widget for Android
Apache License 2.0
243 stars 73 forks source link

Mark Dates in ExpCalendarView? (Clarification) #16

Closed Praveen2106 closed 8 years ago

Praveen2106 commented 8 years ago

Hi, Is it possible to mark dates in ExpCalendarView?

SpongeBobSun commented 8 years ago

Sure it is. You can use below two methods to mark a date in both MCalendarView & ExpCalendarView.

        expCalendarView.markDate(2016, 3, 16);
        expCalendarView.markDate(new DateData(2016, 3, 20).setMarkStyle(new MarkStyle(MarkStyle.DOT, Color.GREEN)));

Please read my doc for more information. If you like this lib, start it please :)

Thanks. Bob.

Praveen2106 commented 8 years ago

Thanks Bob!