FontFamily


public final class FontFamily
extends Object

java.lang.Object
   ↳ android.graphics.fonts.FontFamily


A font family class can be used for creating Typeface.

A font family is a bundle of fonts for drawing text in various styles. For example, you can bundle regular style font and bold style font into a single font family, then system will select the correct style font from family for drawing.

  FontFamily family = new FontFamily.Builder(new Font.Builder("regular.ttf").build())
      .addFont(new Font.Builder("bold.ttf").build()).build();
  Typeface typeface = new Typeface.Builder2(family).build();

  SpannableStringBuilder ssb = new SpannableStringBuilder("Hello, World.");
  ssb.setSpan(new StyleSpan(Typeface.Bold), 6, 12, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

  textView.setTypeface(typeface);
  textView.setText(ssb);
 
In this example, "Hello, " is drawn with "regular.ttf", and "World." is drawn with "bold.ttf". If there is no font exactly matches with the text style, the system will select the closest font.

Summary

Nested classes

class FontFamily.Builder

A builder class for creating new FontFamily. 

Public methods

Font getFont(int index)

Returns a font

int getSize()

Returns the number of fonts in this FontFamily.

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 methods

getFont

Added in API level 29
public Font getFont (int index)

Returns a font

Parameters
index int: an index of the font Value is 0 or greater

Returns
Font a registered font This value cannot be null.

getSize

Added in API level 29
public int getSize ()

Returns the number of fonts in this FontFamily.

Returns
int the number of fonts registered in this family. Value is 1 or greater