【发布时间】:2015-10-04 09:00:58
【问题描述】:
我的 android 应用程序使用 Theme.AppCompat.NoActionBar,这给了我一个无操作栏的深色主题。不过,我希望我的CalendarView 显示为浅色主题。我怎样才能做到这一点?
【问题讨论】:
我的 android 应用程序使用 Theme.AppCompat.NoActionBar,这给了我一个无操作栏的深色主题。不过,我希望我的CalendarView 显示为浅色主题。我怎样才能做到这一点?
【问题讨论】:
你可以这样做,
<CalendarView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:theme="@style/Theme.AppCompat.Light"></CalendarView>
【讨论】: