Android Calenderview 星期天需要 Sun 而不是 S

Android Calenderview Need Sun instead of S for sunday

我在我的项目中使用 CalenderView。当我 运行 程序的星期是星期日、星期一、星期二等的 S、M、T 等
我需要 Sun、Mon、Tue.. 而不是 S、M 等单个字符。这可能吗?
请帮忙

这是我的XML。

<CalendarView
    android:id="@+id/calendarView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white"
    android:firstDayOfWeek="2"
    android:weekSeparatorLineColor="@color/gray"/>

请试试这个:

这个库看起来真的很不错,并且具有更现代的 UI(Material 设计):

https://github.com/prolificinteractive/material-calendarview

您只需使用 gradle 导入即可:

implementation 'com.prolificinteractive:material-calendarview:1.4.0'

并将其添加到您的布局中:

<com.prolificinteractive.materialcalendarview.MaterialCalendarView
    android:id="@+id/calendarView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white"
    android:firstDayOfWeek="2"
    android:weekSeparatorLineColor="@color/gray" 
    />