Example usage for Java android.text.style TextAppearanceSpan fields, constructors, methods, implement or subclass
The text is from its open source code.
TextAppearanceSpan(Context context, int appearance) Uses the specified TextAppearance resource to determine the text appearance. | |
TextAppearanceSpan(String family, int style, int size, ColorStateList color, ColorStateList linkColor) Makes text be drawn with the specified typeface, size, style, and colors. |
String | getFamily() Returns the typeface family specified by this span, or null if it does not specify one. |
ColorStateList | getLinkTextColor() Returns the link color specified by this span, or null if it does not specify one. |
ColorStateList | getTextColor() Returns the text color specified by this span, or null if it does not specify one. |
int | getTextSize() Returns the text size specified by this span, or -1 if it does not specify one. |
int | getTextStyle() Returns the text style specified by this span, or 0 if it does not specify one. |