I searched for two days, and the only thing that even worked remotely was to disable the CalendarView object.
CalendarView cal = (CalendarView) view.findById(R.id.calView); cal.setEnabled(false);
This is not ideal, but I had arrows in one layout to move from month to month. If you find a better solution, I would be more than happy to hear that. Good luck.
source share