People, why can't I change the colors of the Theme.Holo.Light theme, but at the same time the Theme.Material.Light theme changes with the same attributes?
Here is the code:
<resources> <!-- Base application theme. --> <style name="AppTheme" parent="android:Theme.Material.Light"> <!-- Customize your theme here. --> <item name="android:colorPrimary">@color/colorPrimary</item> <item name="android:colorPrimaryDark">@color/colorPrimaryDark</item> <item name="android:colorAccent">@color/colorAccent</item> <item name="android:colorBackground">@color/colorBackground</item> </style> and in another topic with the same attributes no longer works:
<!-- Base application theme. --> <style name="AppTheme" parent="android:Theme.Holo.Light"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> <item name="colorBackground">@color/colorBackground</item> </style> "android:" in the second example, I was prompted to remove the IDE, but it still does not work, help!