When I use the Downloadable Fonts feature on Android, I can add a preloading strategy by adding this code to AndroidManifest.xml
:
<meta-data android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
When exactly is this loaded? On app startup? On installation? If it's on app startup, and I am using the font on the very first screen, is there any performance difference at all?