如何在 Android CalendarView 的深色主题应用中显示浅色主题?

Min*_*eld 0 java xml android styles

我的 android 应用程序使用Theme.AppCompat.NoActionBar它给了我一个无操作栏的黑暗主题。不过,我希望我CalendarView的显示为浅色主题。我怎样才能做到这一点?

Zah*_*hid 5

你可以这样做,

 <CalendarView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:theme="@style/Theme.AppCompat.Light"></CalendarView>
Run Code Online (Sandbox Code Playgroud)