0

My android app uses Theme.AppCompat.NoActionBar which gives me a no-actionbar dark theme. I would like my CalendarView to display as the light-theme though.. How can I achieve this?

galath
  • 5,717
  • 10
  • 29
  • 41
Mingan Beyleveld
  • 281
  • 2
  • 5
  • 19

1 Answers1

6

You can do it this way,

 <CalendarView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:theme="@style/Theme.AppCompat.Light"></CalendarView>
Zahid
  • 677
  • 4
  • 6