SubscriptSpan
public
class
SubscriptSpan
extends MetricAffectingSpan
implements
ParcelableSpan
java.lang.Object | |||
↳ | android.text.style.CharacterStyle | ||
↳ | android.text.style.MetricAffectingSpan | ||
↳ | android.text.style.SubscriptSpan |
The span that moves the position of the text baseline lower.
The span can be used like this:
SpannableString string = new SpannableString("☕- C8H10N4O2\n");
string.setSpan(new SubscriptSpan(), 4, 5, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
string.setSpan(new SubscriptSpan(), 6, 8, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
string.setSpan(new SubscriptSpan(), 9, 10, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
string.setSpan(new SubscriptSpan(), 11, 12, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

SubscriptSpan
.Summary
Inherited constants |
---|
Public constructors | |
---|---|
SubscriptSpan()
Creates a |
|
SubscriptSpan(Parcel src)
Creates a |
Public methods | |
---|---|
int
|
describeContents()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
int
|
getSpanTypeId()
Return a special type identifier for this span class. |
void
|
updateDrawState(TextPaint textPaint)
|
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)
Flatten this object in to a Parcel. |
Inherited methods | |
---|---|
Public constructors
SubscriptSpan
SubscriptSpan (Parcel src)
Creates a SubscriptSpan
from a parcel.
Parameters | |
---|---|
src |
Parcel This value must never be |
Public methods
describeContents
int describeContents ()
Describe the kinds of special objects contained in this Parcelable
instance's marshaled representation. For example, if the object will
include a file descriptor in the output of writeToParcel(Parcel, int)
,
the return value of this method must include the
CONTENTS_FILE_DESCRIPTOR
bit.
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
getSpanTypeId
int getSpanTypeId ()
Return a special type identifier for this span class.
Returns | |
---|---|
int |
updateDrawState
void updateDrawState (TextPaint textPaint)
Parameters | |
---|---|
textPaint |
TextPaint This value must never be |
updateMeasureState
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.
Parameters | |
---|---|
textPaint |
TextPaint : the paint used for drawing the text
This value must never be |
writeToParcel
void writeToParcel (Parcel dest, int flags)
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel : The Parcel in which the object should be written. |
flags |
int : Additional flags about how the object should be written.
May be 0 or PARCELABLE_WRITE_RETURN_VALUE .
|
Interfaces
Classes
- AbsoluteSizeSpan
- AlignmentSpan.Standard
- BackgroundColorSpan
- BulletSpan
- CharacterStyle
- ClickableSpan
- DrawableMarginSpan
- DynamicDrawableSpan
- EasyEditSpan
- ForegroundColorSpan
- IconMarginSpan
- ImageSpan
- LeadingMarginSpan.Standard
- LocaleSpan
- MaskFilterSpan
- MetricAffectingSpan
- QuoteSpan
- RelativeSizeSpan
- ReplacementSpan
- ScaleXSpan
- StrikethroughSpan
- StyleSpan
- SubscriptSpan
- SuggestionSpan
- SuperscriptSpan
- TabStopSpan.Standard
- TextAppearanceSpan
- TtsSpan
- TtsSpan.Builder
- TtsSpan.CardinalBuilder
- TtsSpan.DateBuilder
- TtsSpan.DecimalBuilder
- TtsSpan.DigitsBuilder
- TtsSpan.ElectronicBuilder
- TtsSpan.FractionBuilder
- TtsSpan.MeasureBuilder
- TtsSpan.MoneyBuilder
- TtsSpan.OrdinalBuilder
- TtsSpan.SemioticClassBuilder
- TtsSpan.TelephoneBuilder
- TtsSpan.TextBuilder
- TtsSpan.TimeBuilder
- TtsSpan.VerbatimBuilder
- TypefaceSpan
- UnderlineSpan
- URLSpan