Added in API level 34

EmojiConsistency


class EmojiConsistency
kotlin.Any
   ↳ android.text.EmojiConsistency

The set of emoji that should be drawn by the system with the default font for device consistency. This is intended to be used only by applications that do custom emoji rendering using tools like android.text.style.ReplacementSpan or custom emoji fonts. An example of how this should be used:

  1. Match emoji for third party custom rendering
  2. For each match, check against NonStandardEmoji before displaying custom glyph
  3. If in NonStandardEmojiSet, do not display custom glyph (render with android.graphics.Typeface.DEFAULT instead)
  4. Otherwise, do custom rendering like normal

Summary

Public methods
static MutableSet<IntArray!>

The set of emoji that should be drawn by the system with the default font for device consistency.

Public methods

getEmojiConsistencySet

Added in API level 34
static fun getEmojiConsistencySet(): MutableSet<IntArray!>

The set of emoji that should be drawn by the system with the default font for device consistency. Apps SHOULD attempt to avoid overwriting system emoji rendering with custom emoji glyphs for these codepoint sequences. Apps that display custom emoji glyphs via matching code may filter against this set. On match, the application SHOULD prefer Typeface.Default instead of a custom glyph Apps that use fonts may use this set to add android.text.style.TypefaceSpan for android.graphics.Typeface.DEFAULT for matched codepoint sequences. Codepoint sequences returned MUST match exactly to be considered a match with the exception of Variation Selectors. All codepoint sequences returned MUST be a complete emoji codepoint sequence as defined by unicode.

Return
MutableSet<IntArray!> set of codepoint sequences representing codepoints that should be rendered by the system using the default font. This value cannot be null.