如何根据日历视图中的服务器数据突出显示某些日历日期

时间:2017-03-23 11:45:42

标签: android android-calendar

我正在使用“https://github.com/npanigrahy/Custom-Calendar-View”库来处理自定义日历。现在我的问题是我将缺少服务器的月份日期,我必须在日历中更改这些日期的文本颜色。如何使用这个库。此外,我想使用它的下一个和上一个按钮但不能这样做。

1 个答案:

答案 0 :(得分:0)

该库正在使用日期装饰器功能。

//添加日历日装饰器

List decorators = new ArrayList<>();
decorators.add(new ColorDecorator());
calendarView.setDecorators(decorators);
calendarView.refreshCalendar(currentCalendar);

通过文档,您一定会得到一些东西。