SetApplicationAttribute(android:theme, "@style/LightTheme")
CreateResource(values, colors.xml,
<resources>
<color name="backgroundColor">#FFC441C4</color>
</resources>
)
CreateResource(values-v20, theme.xml,
<resources>
<style
name="LightTheme" parent="@android:style/Theme.Material.Light">
<item name="android:background">@color/backgroundColor</item>
<item name="android:windowBackground">@color/backgroundColor</item>
<item name="android:colorBackground">@color/backgroundColor</item>
</style>
</resources>
)
CreateResource(values-v14, theme.xml,
<resources>
<style
name="LightTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:background">@color/backgroundColor</item>
<item name="android:windowBackground">@color/backgroundColor</item>
<item name="android:colorBackground">@color/backgroundColor</item>
</style>
</resources>
)