Android Calenderview在星期日需要Sun而不是S

时间:2018-08-02 05:25:57

标签: android android-studio calendarview

我在我的项目中使用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"/>

1 个答案:

答案 0 :(得分:1)

请尝试以下操作:

该库看起来非常好,并且具有更现代的UI(材料设计):

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