Google is committed to advancing racial equity for Black communities. See how.
Added in API level 26

FontRequest

class FontRequest
kotlin.Any
   ↳ android.provider.FontRequest

Information about a font request that may be sent to a Font Provider.

Summary

Public constructors
<init>(providerAuthority: String, providerPackage: String, query: String)

<init>(providerAuthority: String, providerPackage: String, query: String, certificates: MutableList<MutableList<ByteArray!>!>)

Public methods
MutableList<MutableList<ByteArray!>!>!

Returns the list of certificate sets given for this provider.

String!

Returns the selected font provider's authority.

String!

Returns the selected font provider's package.

String!

Returns the query string.

String

Public constructors

<init>

Added in API level 26
FontRequest(
    providerAuthority: String,
    providerPackage: String,
    query: String)
Parameters
providerAuthority String: The authority of the Font Provider to be used for the request. This should be a system installed app. This value cannot be null.
providerPackage String: The package for the Font Provider to be used for the request. This is used to verify the identity of the provider. This value cannot be null.
query String: The query to be sent over to the provider. Refer to your font provider's documentation on the format of this string. This value cannot be null.

<init>

Added in API level 26
FontRequest(
    providerAuthority: String,
    providerPackage: String,
    query: String,
    certificates: MutableList<MutableList<ByteArray!>!>)
Parameters
providerAuthority String: The authority of the Font Provider to be used for the request. This value cannot be null.
query String: The query to be sent over to the provider. Refer to your font provider's documentation on the format of this string. This value cannot be null.
providerPackage String: The package for the Font Provider to be used for the request. This is used to verify the identity of the provider. This value cannot be null.
certificates MutableList<MutableList<ByteArray!>!>: The list of sets of hashes for the certificates the provider should be signed with. This is used to verify the identity of the provider. Each set in the list represents one collection of signature hashes. Refer to your font provider's documentation for these values. This value cannot be null.

Public methods

getCertificates

Added in API level 26
fun getCertificates(): MutableList<MutableList<ByteArray!>!>!

Returns the list of certificate sets given for this provider. This helps the system verify that the provider identified by the given authority is the one requested.

getProviderAuthority

Added in API level 26
fun getProviderAuthority(): String!

Returns the selected font provider's authority. This tells the system what font provider it should request the font from.

getProviderPackage

Added in API level 26
fun getProviderPackage(): String!

Returns the selected font provider's package. This helps the system verify that the provider identified by the given authority is the one requested.

getQuery

Added in API level 26
fun getQuery(): String!

Returns the query string. Refer to your font provider's documentation on the format of this string.

toString

Added in API level 26
fun toString(): String
Return
String a string representation of the object.