Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android CalendarView with events

I'm looking for a CalendarView that can be used to show multiple events, like the Google Calendar.

I haven't found a solution for this using android.widget.CalendarView.

What is the best way to implement this feature? Should I customize android.widget.CalendarView or should i use an existing library (which one)?

enter image description here

like image 820
derBndr Avatar asked Nov 08 '16 12:11

derBndr


People also ask

How do I highlight multiple dates in Android CalendarView programmatically?

add(new DateData(2018,04,26)); dates. add(new DateData(2018,04,27)); for(int i=0;i<dates. size();i++) { //mark multiple dates with this code.


2 Answers

You can use existing library as you can refer here http://www.viralandroid.com/2015/11/android-calendarview-example.html

for more customize you can use this library https://github.com/prolificinteractive/material-calendarview

like image 165
Raju Avatar answered Oct 18 '22 10:10

Raju


Hello i used this github project it may serve you as a guide! Calendar View

like image 38
Felipe Franco Avatar answered Oct 18 '22 10:10

Felipe Franco