CreateResource(font, custom_font.xml,
<font-family xmlns:android="
http://schemas.android.com/apk/res/android"
xmlns:app="
http://schemas.android.com/apk/res-auto">
<font android:fontStyle="normal" android:fontWeight="400" android:font="@font/opensans_regular"/>
<font android:fontStyle="italic" android:fontWeight="400" android:font="@font/opensans_regular" />
<font app:fontStyle="normal" app:fontWeight="400" app:font="@font/opensans_regular"/>
<font app:fontStyle="italic" app:fontWeight="400" app:font="@font/opensans_regular" />
</font-family>
)
CreateResource(values-v21, theme.xml,
<resources>
<style name="LightTheme" parent="@android:style/Theme.Material.Light">
<item name="android:colorAccent">#FF5E7A0B</item> <!-- checkboxes,, switches,, etc. -->
<item name="android:fontFamily">@font/opensans_regular</item>
<item name="fontFamily">@font/opensans_regular</item>
</style>
</resources>
)
SetApplicationAttribute(android:theme, "@style/MyTheme")