Added in API level 26
Deprecated in API level 31

FontRequest


public final class FontRequest
extends Object

java.lang.Object
   ↳ android.provider.FontRequest


This class was deprecated in API level 31.
Use the FontRequest

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

Summary

Public constructors

FontRequest(String providerAuthority, String providerPackage, String query)
FontRequest(String providerAuthority, String providerPackage, String query, List<List<byte[]>> certificates)

Public methods

List<List<byte[]>> getCertificates()

Returns the list of certificate sets given for this provider.

String getProviderAuthority()

Returns the selected font provider's authority.

String getProviderPackage()

Returns the selected font provider's package.

String getQuery()

Returns the query string.

String toString()

Returns a string representation of the object.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

FontRequest

Added in API level 26
public FontRequest (String providerAuthority, 
                String providerPackage, 
                String query)

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.

FontRequest

Added in API level 26
public FontRequest (String providerAuthority, 
                String providerPackage, 
                String query, 
                List<List<byte[]>> certificates)

Parameters
providerAuthority String: The authority of the Font Provider to be used for the request. 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.

certificates List: 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
public List<List<byte[]>> getCertificates ()

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.

Returns
List<List<byte[]>>

getProviderAuthority

Added in API level 26
public String getProviderAuthority ()

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

Returns
String

getProviderPackage

Added in API level 26
public String getProviderPackage ()

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

Returns
String

getQuery

Added in API level 26
public String getQuery ()

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

Returns
String

toString

Added in API level 26
public String toString ()

Returns a string representation of the object.

Returns
String a string representation of the object.