在我的android项目中,我有一个白色背景的calendarview,我只想将日历中的所有日期设置为黑色,但找不到如何设置。
xeufq47z1#
在style.xml中使用
<style name="BlueCalenderView" > <item name="colorAccent">@color/desired_color</item> </style>
如果你想改变天的颜色
<style name="CalenderViewDateCustomText" parent="android:TextAppearance.DeviceDefault.Small"> <item name="android:textColor">@color/desired_color</item> </style>
如果你想改变周的颜色
<style name="CalenderViewWeekCustomText" parent="android:TextAppearance.DeviceDefault.Small"> <item name="android:textColor">@color/desired_color</item> </style>
最后,在布局中:
<CalendarView android:id="@+id/calendar" android:theme="@style/BlueCalenderView" android:weekDayTextAppearance="@style/CalenderViewWeekCustomText" android:dateTextAppearance="@style/CalenderViewDateCustomText" ..... />
1条答案
按热度按时间xeufq47z1#
在style.xml中使用
如果你想改变天的颜色
如果你想改变周的颜色
最后,在布局中: