2011-08-31 79 views
0

我在我的xml以下代碼:Android蜂窩CalendarView不尊重XML屬性

<CalendarView 
    android:id="@+id/main_calendar" 
    android:showWeekNumber="false" 
    android:layout_width="700dp" 
    android:layout_height="650dp" 
    android:layout_gravity="center" 
    android:selectedWeekBackgroundColor="@color/black_shadow" 
/> 

的寬度和高度都得到尊重,但showWeekNumber和selectedWeekBackgroundColor都沒有。它仍然顯示星期編號,選定的星期仍然是默認的藍色。

回答

1

另外值得注意的是:您必須明確地提供layout_width和layout_height(不是match_parent/fill_parent/wrap_content)。我在這裏覆蓋它: Android 3.0 CalendarView