MOLO17 / CustomizableCalendar

CustomizableCalendar is a library that allows you to create your calendar, customizing UI and behaviour
MIT License
218 stars 38 forks source link

can we scroll the calendar vertically ? #20

Closed rajasekaranm closed 6 years ago

rajasekaranm commented 6 years ago

Hi, I need to display the months in vertical order , so how do I displaying the calendar vertically?

francesco-furlan commented 6 years ago

Hi @rajasekaranm, Yes you can set the orientation to the LayoutManager of the CalendarRecyclerView. For example:

CalendarRecyclerView calendarRecyclerView = yourCustomizableCalendarView.findViewById(android.R.id.content);
LinearLayoutManager layoutManager = (LinearLayoutManager) calendarRecyclerView.getLayoutManager();
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
rajasekaranm commented 6 years ago

Great @furlan97 , thanks :-)