memfis19 / Cadar

Android solution which represents month and list calendar views.
MIT License
360 stars 48 forks source link

Hiding the Days in month #3

Closed Abdullah-Nasim closed 7 years ago

Abdullah-Nasim commented 7 years ago

How can I hide the days which are not there in particular month ?

memfis19 commented 7 years ago

Hi, thanks for the report. This feature was missed - my fault. I've just fixed it and commit changes, you can check it now. I'm not sure about how soon it will be available via JCenter, but you can check the sources. How it works now:

  1. In case you are using default month day displaying - then just set setDisplayDaysOutOfMonth in MonthCalendarConfiguration to true.
  2. In case you are using custom decorator: current month will be passed as parameter, you can compare it i.e. DateUtils.isSameMonth(...).

Please look at example project MonthCalendarActivity and MonthListCalendarInteractionActivity relatively.