SundeepK
SundeepK
I always like the idea of a long press to select a day to put it in this mode. Then when you select another day it gets highlighted like above...
Register onscroll listener on the calendar. When a scroll hapens, use the date passed in and change a value in the TextView/Toolbar using Java's SimpleDateFormat class. Check the example app...
Then you need to set this in xml layout: https://github.com/SundeepK/CompactCalendarView/blob/master/library/src/main/res/values/attrs.xml#L22 `compactCalendarCurrentSelectedDayTextColor` Theres also one for current day: `compactCalendarCurrentDayTextColor`
Let me know if this solve the problem.
Can you give more example code? I see nothing wrong with the above. As long as your printing to logcat, you should see something.
I think issue #66 is what you described right? If so, it will still need to be implmented. I'm currently working my way through issue, and this is one I...
You mean this view? https://cdn1.tnwcdn.com/wp-content/blogs.dir/1/files/2015/02/N6_weekview-e1424884476217.png That's not possible with this library. I have another library which does something similar but it's not maintained and is not in maven but it...
You can use 2 other ways: ```java /** * Adds an event to be drawn as an indicator in the calendar. * If adding multiple events see {@link #addEvents(List)}} method....
You mean the currently selected day when you tap and select a day you don't want to highlight it? OR the today highlight that is inly higlighlted for today's date?...
Hi, you need to set the typeface on the underlying paint object using the `setTypeface` method. For example, just before this line might be a good place: https://github.com/SundeepK/CompactCalendarView/blob/master/library/src/main/java/com/github/sundeepk/compactcalendarview/CompactCalendarController.java#L185 I think...