0

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.

Apk from device

XML Layout from Android Studio

Marian Pavel
  • 2,726
  • 8
  • 29
  • 65

1 Answers1

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