Class TextAppearance
- java.lang.Object
-
- com.yandex.mobile.ads.nativeads.template.appearance.TextAppearance
-
- All Implemented Interfaces:
android.os.Parcelable
public final class TextAppearance extends java.lang.Object implements android.os.ParcelableTextAppearance provides interfaces for TextView customization. TextAppearance are created usingTextAppearance.Builder.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTextAppearance.BuilderBuilds aTextAppearance.
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator<TextAppearance>CREATOR
-
Constructor Summary
Constructors Modifier Constructor Description protectedTextAppearance(android.os.Parcel in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdescribeContents()booleanequals(java.lang.Object o)java.lang.StringgetFontFamilyName()Returns the font family name specified for TextView text.intgetFontStyle()Returns the font style specified for TextView text.intgetTextColor()Returns the color specified for TextView text.floatgetTextSize()Returns the size specified for TextView text.inthashCode()voidwriteToParcel(android.os.Parcel dest, int flags)
-
-
-
Field Detail
-
CREATOR
public static final android.os.Parcelable.Creator<TextAppearance> CREATOR
-
-
Method Detail
-
getTextColor
public int getTextColor()
Returns the color specified for TextView text.- Returns:
- text color of the TextView.
-
getTextSize
public float getTextSize()
Returns the size specified for TextView text.- Returns:
- text size in scale-independent pixels (sp).
-
getFontFamilyName
@Nullable public java.lang.String getFontFamilyName()
Returns the font family name specified for TextView text.- Returns:
- font family name of the TextView text.
-
getFontStyle
public int getFontStyle()
Returns the font style specified for TextView text.- Returns:
- font style of the TextView text.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
describeContents
public int describeContents()
- Specified by:
describeContentsin interfaceandroid.os.Parcelable
-
writeToParcel
public void writeToParcel(android.os.Parcel dest, int flags)- Specified by:
writeToParcelin interfaceandroid.os.Parcelable
-
-