【问题标题】:Android Calendar View change text colorAndroid日历视图更改文本颜色
【发布时间】:2016-05-18 13:34:01
【问题描述】:

我的应用中有一个CalendarView。但我想要CalendarView 黑色的背景和CalendarView 白色内的文字。但在 xml 中,CalendarView 中没有 TextColor=。那么如何更改CalendarView的文字呢?

到目前为止,我已经尝试过 StackOverflow 和互联网上的所有解决方案。我设法更改了 CalendarView 中日期的颜色,但没有更改月份和年份。

我在这篇文章中尝试了这两种方法:Set the text color of calendar view month name

我已经尝试过这种方法: Change CalendarView style

还有一些我在互联网上找到的,但没有成功。

【问题讨论】:

标签: java android calendarview


【解决方案1】:

在您的 CalendarView

中设置样式
<CalendarView
    android:id="@+id/calendarView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:theme="@style/CalenderViewCustom"
    android:dateTextAppearance="@style/CalenderViewDateCustomText"
    android:weekDayTextAppearance="@style/CalenderViewWeekCustomText" />

在 Style.xml 中

    <style name="CalenderViewCustom" parent="Theme.AppCompat">
        <item name="colorAccent">@color/red</item>
        <item name="colorPrimary">@color/white</item>
    </style>

    <style name="CalenderViewDateCustomText" parent="android:TextAppearance.DeviceDefault.Small">
        <item name="android:textColor">@color/white</item>
        <item name="android:weekNumberColor">@color/red</item>
    </style>

    <style name="CalenderViewWeekCustomText" parent="android:TextAppearance.DeviceDefault.Small">
        <item name="android:textColor">@color/white</item>
    </style>

【讨论】:

  • 此处日历视图月份名称的颜色为白色。
【解决方案2】:
android:theme="@style/testTheme"

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

让它变白

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

android:textColorPrimary="@color/yourColor"

或其他文字颜色使用以下

android:weekDayTextAppearance="@style/weekDayTextAppearance"
    android:dateTextAppearance="@style/appTextAppearance"
    android:unfocusedMonthDateColor="@color/colorLoginBtn"
    android:selectedWeekBackgroundColor="@color/colorLoginBtn"
    android:weekSeparatorLineColor="@color/colorLoginBtn"
    android:focusedMonthDateColor="@color/colorLoginBtn"
    android:weekNumberColor="@color/colorLoginBtn"

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-09-14
    • 1970-01-01
    • 2021-12-18
    相关资源
    最近更新 更多