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?
Asked
Active
Viewed 1,503 times
0

galath
- 5,717
- 10
- 29
- 41

Mingan Beyleveld
- 281
- 2
- 5
- 19
-
1http://stackoverflow.com/a/30975932/1761003 – Maveňツ Jul 15 '15 at 11:01
1 Answers
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