我的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>