MOLO17 / CustomizableCalendar

CustomizableCalendar is a library that allows you to create your calendar, customizing UI and behaviour
MIT License
218 stars 38 forks source link

How to change the selection color from default blue #24

Closed sharathyadhav1 closed 6 years ago

sharathyadhav1 commented 6 years ago

How to change the selection color from default blue and also the selection text color in the recycle view of CalendarRecyclerView

francesco-furlan commented 6 years ago

Hi @sharathyadhav1, you can find the default implementation in the MonthAdapter class of the library starting on line 93, to customize the background and the text color you should return true on the hasImplementedMonthCellBinding method and implement the onMonthCellBindView method of your ViewInteractor.

sharathyadhav1 commented 6 years ago

thanks it worked