Android app with colored background in buttons and text

0

I was working on an android app, and I do not know how it started to cause problems ... it did not start at all, so I opened the message saying that the app cracked and wanted to restart it. After some effort to figure out what was going on, I discovered that something went wrong with the theme, so I started to change theme in the manifest, the result was a red background in most of the app, how can I solve this? Which properties do I have to change? See a screenshot of the app:

Theitemsthatareinredhavethepropertybackgroundinred..IknowthatbeforeitwasnotdisplayingredandIknowIwasnotchangingthebackgroundcolor,I'mconfused.

HereisthestylexmlIuse:

<stylename="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
        <item name="android:actionBarStyle">@style/ActionBar</item>
        <item name="colorPrimaryDark">@color/primary_dark</item>
        <item name="colorAccent">@color/burning_gold</item>
    </style>
<style name="ActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="android:displayOptions">showHome|useLogo</item>
    <item name="displayOptions">showHome|useLogo</item>
    <item name="android:background">@color/ccilc_red</item>
</style>
    
asked by anonymous 20.02.2018 / 17:18

0 answers