1

我正在使用CalendarView. 我的问题是,我找不到自定义日历样式的方法。

这是我的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/calendario_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <CalendarView
        android:id="@+id/calendarView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        />

</LinearLayout>

当我显示这个屏幕时,我会得到月份的名称和年份,就像在照片中一样。

样品照片

如何自定义CalendarView样式?

4

1 回答 1

2

对于设计日历,您可以尝试此链接 并更改

android:layout_height="wrap_content"

android:layout_height="match_parent"

这也可能对您有帮助链接

于 2013-10-01T10:18:12.767 回答