Closed rajasekaranm closed 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);
Great @furlan97 , thanks :-)
Hi, I need to display the months in vertical order , so how do I displaying the calendar vertically?