Today my app started to have a dark background and only the background, as you see in below screenshots the button or the checkbox have the original beautiful colors. I have tripple checked everything, from gradles to xml's to manifest and style, I have runned the application on 2 devices and I can't figure it out what I can do.
Asked
Active
Viewed 28 times
1 Answers
1
try changing the Manifest re the below:
<activity
android:name=".YourActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
and look here

Community
- 1
- 1

Robert Rowntree
- 6,230
- 2
- 24
- 43
-
It worked but can you explain me how the theme changed without doing anything ? – Marian Pavel Mar 15 '15 at 18:47