如何在Android 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>

相关内容

  • 没有找到相关文章

最新更新