Package icyllis.modernui.text.style
Class UnderlineSpan
java.lang.Object
icyllis.modernui.text.style.CharacterStyle
icyllis.modernui.text.style.UnderlineSpan
- All Implemented Interfaces:
icyllis.modernui.text.ParcelableSpan,UpdateAppearance,Parcelable,Cloneable
public class UnderlineSpan
extends CharacterStyle
implements UpdateAppearance, icyllis.modernui.text.ParcelableSpan
A span that underlines the text it's attached to.
The span can be used like this:
SpannableString string = new SpannableString("Text with underline span");
string.setSpan(new UnderlineSpan(), 10, 19, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);-
Nested Class Summary
Nested classes/interfaces inherited from interface icyllis.modernui.util.Parcelable
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>, Parcelable.WriteFlags -
Constructor Summary
ConstructorsConstructorDescriptionCreates anUnderlineSpan.UnderlineSpan(Parcel src) Creates anUnderlineSpanfrom a parcel. -
Method Summary
Modifier and TypeMethodDescriptionintReturn a special type identifier for this span class.voidupdateDrawState(TextPaint paint) voidwriteToParcel(Parcel dest, int flags) The subclass implements the method to flatten its contents by calling the methods ofParcelfor its primitive values.Methods inherited from class icyllis.modernui.text.style.CharacterStyle
clone, wrap
-
Constructor Details
-
UnderlineSpan
public UnderlineSpan()Creates anUnderlineSpan. -
UnderlineSpan
Creates anUnderlineSpanfrom a parcel.
-
-
Method Details
-
getSpanTypeId
public int getSpanTypeId()Return a special type identifier for this span class.- Specified by:
getSpanTypeIdin interfaceicyllis.modernui.text.ParcelableSpan
-
writeToParcel
Description copied from interface:ParcelableThe subclass implements the method to flatten its contents by calling the methods ofParcelfor its primitive values.- Specified by:
writeToParcelin interfaceParcelable- Parameters:
dest- the parcel to write the object's data toflags- the flags about how the object should be written
-
updateDrawState
- Specified by:
updateDrawStatein classCharacterStyle
-