The Downloadable Fonts feature lets APIs request fonts from a provider application instead of bundling files into the app or letting the app download fonts. Downloadable Fonts is available on devices running Android API versions 14 and higher through the AndroidX Core library.
Downloadable Fonts offers the following benefits:
- Reduces the app size, therefore increasing the app installation success rate.
- Improves the overall system health, as multiple apps can share the same font through a provider. This saves users cellular data, phone memory, and disk space. In this model, the font is fetched over the network when needed.
How does Downloadable Fonts work?
A font provider is an application that retrieves fonts and caches them locally so other apps can request and share fonts. The following figure illustrates the process.
The basics
You can use the Downloadable Fonts feature in the following ways, which are discussed in detail' in later sections:
Use Downloadable Fonts with Android Studio and Google Play services
You can set your application to download fonts by using Android Studio 3.0 or higher. To help you get started with Downloadable Fonts features, you can use the font provider from Google Play services.
- In the Layout Editor, select a
TextView
. Then, under Attributes, select fontFamily > More Fonts. The Resources window appears. - In the Source menu, select Google Fonts.
- In the Fonts box, select a font under the "Downloadable" area.
- Select Create downloadable font and click OK.
Android Studio automatically generates the relevant XML files that are needed to render the font correctly in your app.
Use Downloadable Fonts programmatically
As of Android 8.0 (API level 26), AndroidX Core provides full support for Downloadable Fonts. For more information about using the AndroidX Core library, see the Downloadable Fonts AndroidX Core library section on this page.
To use the Downloadable Fonts feature programmatically, interact with two key classes:
android.graphics.fonts.FontRequest
: this class lets you create a font request.FontsContractCompat
: this class lets you create a newTypeface
object based on the font request.
Your app retrieves fonts from the font provider by using the FontsContract
API. Each
provider has its own set of restrictions on the Android versions and query language it supports. For
more information on the Android versions and query format, refer to your provider's
documentation.
To download a font, complete the following steps:
- Create an instance of the
android.graphics.fonts.FontRequest
class to request the font from the provider. To create a request, pass the following parameters:- The font provider authority.
- The font provider package to verify the identity of the provider.
- The string query of the font. For more information about query formats, see your font provider's documentation, such as Google Fonts.
- A list of sets of hashes for the certificates to verify the identity of the provider.
Kotlin
val request = FontRequest( "com.example.fontprovider.authority", "com.example.fontprovider", "my font", certs )
Java
FontRequest request = new FontRequest("com.example.fontprovider", "com.example.fontprovider", "my font", certs);
- Create an instance of the
FontsContract.FontRequestCallback
class. - Override the
onTypefaceRetrieved()
method to indicate the font request is complete. Provide the retrieved font as the parameter. You can use this method to set the font as needed. For example, you can set the font on aTextView
. - Override the
onTypefaceRequestFailed()
method to receive information about errors in the font request process. For more information about error codes, refer to the error code constants. - Call the
FontsContract.requestFont()
method to retrieve the font from the font provider. The method initiates a check to determine whether the font exists in the cache. If the font isn't available locally, it calls the font provider, retrieves the font asynchronously, and passes the result to the callback. Pass the following parameters:- An instance of the
Context
class - An instance of the
android.graphics.fonts.FontRequest
class - A callback to receive the results of the font request
- A handler to fetch fonts on a thread
- An instance of the
The following sample code illustrates the overall Downloadable Fonts process:
Kotlin
val request = FontRequest( "com.example.fontprovider.authority", "com.example.fontprovider", "my font", certs ) val callback = object : FontsContract.FontRequestCallback() { override fun onTypefaceRetrieved(typeface: Typeface) { // Your code to use the font goes here. ... } override fun onTypefaceRequestFailed(reason: Int) { // Your code to deal with the failure goes here. ... } } FontsContract.requestFonts(context, request, handler, null, callback)
Java
FontRequest request = new FontRequest("com.example.fontprovider.authority", "com.example.fontprovider", "my font", certs); FontsContract.FontRequestCallback callback = new FontsContract.FontRequestCallback() { @Override public void onTypefaceRetrieved(Typeface typeface) { // Your code to use the font goes here. ... } @Override public void onTypefaceRequestFailed(int reason) { // Your code to deal with the failure goes here. ... } }; FontsContract.requestFonts(context, request, handler, null, callback);
For more information about how to download a font from a font provider, see the DownloadableFonts sample app.
Use Downloadable Fonts with AndroidX Core
The AndroidX Core provides support for the Downloadable Fonts feature on devices running Android
API versions 14 or higher. The
androidx.core.provider
package contains FontsContractCompat
and FontRequest
classes to implement
the backward-compatible Downloadable Fonts feature support. The AndroidX classes contain methods
similar to the framework methods, and the process for downloading fonts is similar to the one
described in the section on this page about
using Downloadable Fonts programmatically.
To download fonts using AndroidX, import the FontsContractCompat
and
FontRequest
classes from the androidx.core.provider
package. Create
instances of these classes instead of
FontsContract
and
android.graphics.fonts.FontRequest
framework classes.
Add AndroidX Core dependency
To use the FontsContractCompat
and FontRequest
classes, you must modify
your app project's classpath dependencies within your development environment.
To add AndroidX Core to your application project, add the following dependency to your app's
build.gradle
file:
Groovy
dependencies { ... implementation "androidx.core:core-ktx:2.2.0" }
Kotlin
dependencies { ... implementation("androidx.core:core-ktx:2.2.0") }
Use Downloadable Fonts as resources in XML
Android 8.0 (API level 26) and AndroidX Core offer a faster and more convenient way to declare a custom font as a resource in the XML layout. This means that there is no need to bundle the font as an asset. You can define a custom font for your entire theme, which accelerates usability for multiple weights and styles, such as bold, medium, or light, when provided.
- Create a new XML file in the
res/font
folder. - Add a
<font-family>
root element and set the font-related attributes, as shown in the following sample XML file: - Refer to the file as
@font/font_file_name
in the layout XML file. You can also use thegetFont()
method to retrieve the file programmatically, such asgetFont(R.font.font_file_name)
.
<?xml version="1.0" encoding="utf-8"?> <font-family xmlns:android="http://schemas.android.com/apk/res/android" android:fontProviderAuthority="com.example.fontprovider.authority" android:fontProviderPackage="com.example.fontprovider" android:fontProviderQuery="example font" android:fontProviderCerts="@array/certs"> </font-family>
Pre-declare fonts in the manifest
Layout inflation and resource retrieval are synchronous tasks. By default, the first attempt to retrieve fonts triggers a request to the font provider, and therefore increases the first layout time. To avoid the delay, you can pre-declare fonts that need to be retrieved in your manifest. After the system retrieves the font from the provider, it is available immediately. If font retrieval takes longer than expected, the system aborts the fetching process and uses the default font.
To pre-declare fonts in the manifest, complete the following steps:
- Create a resources array in
res/values/arrays.xml
and declare the fonts that you want to prefetch. - Use a
meta-data
tag to declare the resource array in your manifest.
res/values/arrays.xml <?xml version="1.0" encoding="utf-8"?> <resources> <array name="preloaded_fonts"> <item>@font/font1</item> <item>@font/font2</item> </array> </resources>
<meta-data android:name="preloaded_fonts" android:resource="@array/preloaded_fonts" />
Add certificates
When a font provider isn't preinstalled, or if you are using the AndroidX Core library, declare the certificates the font provider is signed with. The system uses the certificates to verify the font provider's identity.
Perform the following steps to add certificates:
- Create a string array with the certificate details. For more information about certificate details, refer to your font provider's documentation.
- Set the
fontProviderCerts
attribute to the array.
<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="certs"> <item>MIIEqDCCA5CgAwIBAgIJA071MA0GCSqGSIb3DQEBBAUAMIGUMQsww...</item> </string-array> </resources>
android:fontProviderCerts="@array/certs"