Android calendar view [closed]

I wrote Caldroid library (https://github.com/roomorama/Caldroid) that is simple to setup and have many features such as setup min/max date, disabled dates, select date range, swipe to change month, fully localized, support rotation properly etc. It’s easy to customize the look and feel. Just to share if someone might find it useful 🙂

Android CalendarView for Showing Events

The built in CalendarView widget doesn’t expose the ability to change the color of the calendar cells in month view. See the source. You might try the following approaches: Extend from CalendarView and implement onDraw yourself. You’ll have to reimplement all the existing drawing behavior, including these 4 methods: protected void onDraw(Canvas canvas) { drawBackground(canvas); … Read more