更改calendarview的月份颜色(Android)

时间:2012-01-04 09:15:04

标签: android android-calendar

任何能告诉我如何更改calendarview中月份颜色的人都无法在styles.xml(android主题)中找到任何合理的属性来改变 -

代码:

<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>

2 个答案:

答案 0 :(得分:1)

此设置没有任何属性。请看看Ryan的答案,他开出了一条出路。 https://stackoverflow.com/a/13621017/1723819

答案 1 :(得分:1)

 android:theme="@style/testTheme"

使用此主题或以父级作为此主题的自定义主题。

使其成为白色

要选择除白色以外的其他颜色,请使用以下颜色

android:textColorPrimary="@color/yourColor"