2

I am using a Calender View in android.I am trying to change the background color of the particular date which i want. I have gone through the Calender View Document Here

But not able find a method like SetDateBackgroundColor(Date date,Color color); Please tell me how to achieve it?

Tarun Sharma
  • 601
  • 3
  • 13
  • 31
  • possible dublicate of [this](http://stackoverflow.com/questions/16556254/android-calendarview-for-showing-events) – hrskrs Feb 11 '15 at 12:03

1 Answers1

0

I don't think there is a method for that but you can set an OnDateChangeListener which checks for the current date selected and changes the background if the date matches your date.

Androidz
  • 401
  • 1
  • 6
  • 19