FontRequestEmojiCompatConfig
public class FontRequestEmojiCompatConfig extends EmojiCompat.Config
| java.lang.Object | ||
| ↳ | androidx.emoji.text.EmojiCompat.Config | |
| ↳ | androidx.emoji.text.FontRequestEmojiCompatConfig |
EmojiCompat.Config implementation that asynchronously fetches the required font and the metadata using a FontRequest. FontRequest should be constructed to fetch an EmojiCompat compatible emoji font.
Summary
Nested types |
|---|
public class FontRequestEmojiCompatConfig.ExponentialBackoffRetryPolicy extends FontRequestEmojiCompatConfig.RetryPolicyA retry policy implementation that doubles the amount of time in between retries. |
public abstract class FontRequestEmojiCompatConfig.RetryPolicyRetry policy used when the font provider is not ready to give the font file. |
Public constructors |
|---|
FontRequestEmojiCompatConfig( |
Public methods |
|
|---|---|
FontRequestEmojiCompatConfig |
setHandler(Handler handler)Sets the custom handler to be used for initialization. |
FontRequestEmojiCompatConfig |
Sets the retry policy. |
Inherited methods |
||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Public constructors
FontRequestEmojiCompatConfig
public FontRequestEmojiCompatConfig(
@NonNull Context context,
@NonNull FontRequest request
)
| Parameters | |
|---|---|
@NonNull Context context |
Context instance, cannot be |
@NonNull FontRequest request |
|
Public methods
setHandler
public FontRequestEmojiCompatConfig setHandler(Handler handler)
Sets the custom handler to be used for initialization. Since font fetch take longer time, the metadata loader will fetch the fonts on the background thread. You can pass your own handler for this background fetching. This handler is also used for retrying.
| Parameters | |
|---|---|
Handler handler |
A |
setRetryPolicy
public FontRequestEmojiCompatConfig setRetryPolicy(FontRequestEmojiCompatConfig.RetryPolicy policy)
Sets the retry policy. {@see RetryPolicy}
| Parameters | |
|---|---|
FontRequestEmojiCompatConfig.RetryPolicy policy |
The policy to be used when the font provider is not ready to give the font file. Can be |