SetApplicationAttribute(android:theme, "@style/MyAppTheme")
CreateResource(values, colors.xml,
<resources>
<color name="actionbar">#FFB30037</color>
<color name="statusbar">#FFFFD2DE</color>
<color name="textColorPrimary">#ffffffff</color>
<color name="navigationBar">#FFB30037</color>
</resources>
)
CreateResource(values, theme.xml,
<resources>
<style name="MyAppTheme" parent="Theme.AppCompat.Light">
<item name="colorPrimary">#FFFF0000</item>
<item name="android:buttonTint">#FF876DFF</item>
<item name="colorControlActivated">#FF876DFF</item>
</style>
</resources>
)