I am still playing around with my calendar, I already nearly managed to integrate the https://github.com/SundeepK/CompactCalendarView into one of my fragments. There is just one
You need to pass a Context to the Constructor of ArrayAdapter. You're actually in initializing it in a Fragment class, so this is not valid as a Context. Try calling
final ArrayAdapter adapter = new ArrayAdapter(getActivity(),
android.R.layout.simple_list_item_1,
mutableBookings);