Hallo,
ich habe hier https://www.b4x.com/android/forum/bookmarks/?type=post&id=628726 eine Methode gefunden, wie man die Schriftart vom gesamten App verändern kann.
Nun habe ich das bei mir versucht einzusetzen, leider bekomme ich bereits beim compilieren eine Fehler.
So schaut es bei mir aus:
ich habe hier https://www.b4x.com/android/forum/bookmarks/?type=post&id=628726 eine Methode gefunden, wie man die Schriftart vom gesamten App verändern kann.
Nun habe ich das bei mir versucht einzusetzen, leider bekomme ich bereits beim compilieren eine Fehler.
So schaut es bei mir aus:
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")