Package icyllis.modernui.text.style
Class SubscriptSpan
java.lang.Object
icyllis.modernui.text.style.CharacterStyle
icyllis.modernui.text.style.MetricAffectingSpan
icyllis.modernui.text.style.SubscriptSpan
- All Implemented Interfaces:
ParcelableSpan
,UpdateAppearance
,UpdateLayout
,Parcelable
The span that moves the position of the text baseline lower.
Unlike Android, this Span also affects the relative text size.
-
Nested Class Summary
Nested classes/interfaces inherited from interface icyllis.modernui.util.Parcelable
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>, Parcelable.WriteFlags
-
Constructor Summary
ConstructorDescriptionCreates aSubscriptSpan
.SubscriptSpan
(Parcel src) Creates aSubscriptSpan
from a parcel. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
applyBaselineShift
(TextPaint textPaint) int
Return a special type identifier for this span class.toString()
void
updateMeasureState
(TextPaint textPaint) Classes that extend MetricAffectingSpan implement this method to update the text formatting in a way that can change the width or height of characters.void
writeToParcel
(Parcel dest, int flags) The subclass implements the method to flatten its contents by calling the methods ofParcel
for its primitive values.Methods inherited from class icyllis.modernui.text.style.MetricAffectingSpan
getUnderlying, updateDrawState
Methods inherited from class icyllis.modernui.text.style.CharacterStyle
wrap
-
Constructor Details
-
SubscriptSpan
public SubscriptSpan()Creates aSubscriptSpan
. -
SubscriptSpan
Creates aSubscriptSpan
from a parcel.
-
-
Method Details
-
getSpanTypeId
public int getSpanTypeId()Description copied from interface:ParcelableSpan
Return a special type identifier for this span class.- Specified by:
getSpanTypeId
in interfaceParcelableSpan
-
writeToParcel
Description copied from interface:Parcelable
The subclass implements the method to flatten its contents by calling the methods ofParcel
for its primitive values.- Specified by:
writeToParcel
in interfaceParcelable
- Parameters:
dest
- the parcel to write the object's data toflags
- the flags about how the object should be written
-
updateMeasureState
Description copied from class:MetricAffectingSpan
Classes that extend MetricAffectingSpan implement this method to update the text formatting in a way that can change the width or height of characters.- Specified by:
updateMeasureState
in classMetricAffectingSpan
- Parameters:
textPaint
- the paint used for measuring the text
-
applyBaselineShift
-
toString
-