更改 CalendarView 样式
Posted
技术标签:
【中文标题】更改 CalendarView 样式【英文标题】:Change CalendarView style 【发布时间】:2012-03-13 19:40:58 【问题描述】:我正在尝试在我的应用程序中添加一个 CalendarView,它使用 Theme.Light 主题。问题是,这个日历的天数是白色的,所以在使用浅色主题时,你看不到它们。
现在,我的 XML 布局文件中有以下代码:
<CalendarView
android:id="@+id/calendar1"
android:layout_
android:layout_/>
我试图像这样强制日历主题:
<CalendarView
android:id="@+id/calendar1"
android:layout_
android:layout_
android:theme="@android:style/Theme.Light" />
但它不会改变任何东西。我想我应该对 android:dateTextAppearance 属性做点什么,所以我尝试了这个:
<CalendarView
android:id="@+id/calendar1"
android:layout_
android:layout_
android:dateTextAppearance="@android:style/TextAppearance.Large.Inverse" />
但它也不做任何事情。
有什么想法吗?
谢谢!
【问题讨论】:
【参考方案1】:在我的项目中,我在主题中定义了属性“android:calendarViewStyle”。
<style name="Theme.Custom" parent="@android:Theme">
<item name="android:calendarViewStyle">@style/Widget.CalendarView.Custom</item>
</style>
<style name="Widget.CalendarView.Custom" parent="android:Widget.CalendarView">
<item name="android:focusedMonthDateColor">@color/cs_textcolor</item>
<item name="android:weekNumberColor">@color/red</item>
<item name="android:weekDayTextAppearance">@style/TextAppearance.Medium</item>
<item name="android:dateTextAppearance">@style/TextAppearance.Medium</item>
</style>
所有样式的可能性是:
@attr ref android.R.styleable#CalendarView_showWeekNumber @attr ref android.R.styleable#CalendarView_firstDayOfWeek @attr ref android.R.styleable#CalendarView_minDate @attr ref android.R.styleable#CalendarView_maxDate @attr ref android.R.styleable#CalendarView_shownWeekCount @attr ref android.R.styleable#CalendarView_selectedWeekBackgroundColor @attr ref android.R.styleable#CalendarView_focusedMonthDateColor @attr ref android.R.styleable#CalendarView_unfocusedMonthDateColor @attr ref android.R.styleable#CalendarView_weekNumberColor @attr ref android.R.styleable#CalendarView_weekSeparatorLineColor @attr ref android.R.styleable#CalendarView_selectedDateVerticalBar @attr ref android.R.styleable#CalendarView_weekDayTextAppearance @attr ref android.R.styleable#CalendarView_dateTextAppearance注意:如果 showWeekNumber 不能作为 xml 样式使用,您可以在代码中使用 setShowWeekNumber(true) 进行设置。
【讨论】:
正确吗? 无法使用上述解决方案更改颜色主题 您能详细说明一下吗?我在哪里使用所有这些“@attr”的东西?我一点也不熟悉。 非常感谢,伙计。【参考方案2】:我也遇到了很多麻烦。虽然并不完美,而且我还没有弄清楚如何修改各个方面,但我已经接近了。我就是这样做的,在项目的styles.xml中我添加了这些样式:
<style name="CalenderViewCustom" parent="Theme.AppCompat">
<item name="colorAccent">@color/white_30</item>
</style>
<style name="CalenderViewDateCustomText" parent="android:TextAppearance.DeviceDefault.Small">
<item name="android:textColor">@color/white</item>
</style>
<style name="CalenderViewWeekCustomText" parent="android:TextAppearance.DeviceDefault.Small">
<item name="android:textColor">@color/white_30</item>
</style>
然后,对于 CalendarView,我这样引用了这些样式:
<CalendarView
android:layout_
android:layout_
android:theme="@style/CalenderViewCustom"
android:dateTextAppearance="@style/CalenderViewDateCustomText"
android:weekDayTextAppearance="@style/CalenderViewWeekCustomText"/>
您可以在上面的 CalenderViewCustom 中添加其他类型的颜色(主要/次要)。
【讨论】:
谢谢它在 2021 年仍然有效^^以上是关于更改 CalendarView 样式的主要内容,如果未能解决你的问题,请参考以下文章
在 DatePicker 上设置 MinDate 会将 CalendarView 移动到 1964
如何在 Flutter 中实现 SingleLine 水平 CalendarView