Anyone that can tell me how to change the color of the month in the calendarview
, can't find any reasonable attributs in styles.xml (android theme) to change from--
Code:
<style name="Theme" parent="@android:style/Theme.Holo">
<item name="android:calendarViewStyle">@style/Calendar</item>
</style>
<style name="Calendar" parent="@android:style/Widget.Holo.CalendarView">
<item name="android:weekNumberColor">#66FFFFFF</item>
<item name="android:weekDayTextAppearance">@style/weekDays</item>
</style>
<style name="weekDays">
<item name="android:textColor">#66FFFFFF</item>
</style>