我正在使用“https://github.com/npanigrahy/Custom-Calendar-View”库来处理自定义日历。现在我的问题是我将缺少服务器的月份日期,我必须在日历中更改这些日期的文本颜色。如何使用这个库。此外,我想使用它的下一个和上一个按钮但不能这样做。
答案 0 :(得分:0)
该库正在使用日期装饰器功能。
//添加日历日装饰器
List decorators = new ArrayList<>();
decorators.add(new ColorDecorator());
calendarView.setDecorators(decorators);
calendarView.refreshCalendar(currentCalendar);
通过文档,您一定会得到一些东西。