I have an app with several skins. In one skin i define android:colorBackground
and then I want to set this color in an XML layout as ViewGroup background color. How do I do it? Is it possible? Or it is some attribute used by the system only?
<style name="SkinDefault" parent="@style/_SkinXYZ">
<item name="android:colorBackground">@color/skin_default_color_background</item>
<item name="colorOnBackground">@color/skin_default_color_on_background</item>
</style>