编辑所选日期的颜色 Material Calendar View

Editing the color of the selected date Material Calendar View

我在数据库中有几个日期。

我想将这些日期添加到我的日历中。改变了背景。取决于其他变量。

现在是一个僵硬的代码

   private void  colorCalendar(){
       String dt = "12122018";
           Date date = new Date(dt);
           SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
           String formatted = sdf.format(date);
       //calendarView.setSelectionColor();

       calendarView.setSelectedDate(LocalDate.parse(formatted));
   }

但是错误。

我用https://github.com/prolificinteractive/material-calendarview android工作室。

但我可以改变它

我指望你的帮助

Material 日历视图

Good code is its own best documentation

我认为这里的库有关于您的用例的很好的文档, 当您说取决于其他变量时,我建议您仔细阅读 link 或提供更多相关信息。 Customization