在我的应用程序中,我必须显示一些日历,其中有些日子的颜色不同(例如绿色背景) 我进入了“日历视图”,我专注于当前日期,但似乎无法从代码中为某些日子着色。你能给我一些建议吗? (我不想使用自定义库)
CalendarView calendario = (CalendarView) findViewById(R.id.calendarView1);
Calendar Now = Calendar.getInstance();
calendario.setDate(Now.getTimeInMillis()); //focus calendar view on today
答案 0 :(得分:0)
几乎不可能做,尝试使用https://github.com/SundeepK/CompactCalendarView,它很好用。 我从CalendarView切换到CompactCalendarView,它解决了我的大多数问题。