How to highlight multiple dates in a android CalendarView programmatically

六月ゝ 毕业季﹏ 提交于 2019-12-03 14:09:42

Follow this link to get the library mCalendarView

1.Use 3rd party library McalenderView.

2.Add to your gradle:-

'sun.bob:mcalendarview:1.0.0'

Try this code:-

3.Some code:-

calendarView = ((MCalendarView) view.findViewById(R.id.calendar_exp));

    ArrayList<DateData> dates=new ArrayList<>();
    dates.add(new DateData(2018,04,26));
    dates.add(new DateData(2018,04,27));

    for(int i=0;i<dates.size();i++) {
        calendarView.markDate(dates.get(i).getYear(),dates.get(i).getMonth(),dates.get(i).getDay());//mark multiple dates with this code.
    }


    Log.d("marked dates:-",""+calendarView.getMarkedDates());//get all marked dates.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!