Android: how to disable scrolling CalendarView

Is there a way to disable scrolling in a calendar without completely disabling calendar date picker events?

+4
source share
1 answer

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.

+1
source

All Articles