Package icyllis.modernui.text
Interface Spannable
- All Superinterfaces:
CharSequence
,Spanned
- All Known Subinterfaces:
Editable
- All Known Implementing Classes:
PrecomputedText
,SpannableString
,SpannableStringBuilder
This is the interface for text to which markup objects can be
attached and detached.
Not all
Not all
Spannable
classes have mutable text; see
Editable
for that.-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Factory used byTextView
to create newSpannables
. -
Field Summary
Fields inherited from interface icyllis.modernui.text.Spanned
SPAN_COMPOSING, SPAN_EXCLUSIVE_EXCLUSIVE, SPAN_EXCLUSIVE_INCLUSIVE, SPAN_INCLUSIVE_EXCLUSIVE, SPAN_INCLUSIVE_INCLUSIVE, SPAN_INTERMEDIATE, SPAN_MARK_MARK, SPAN_MARK_POINT, SPAN_PARAGRAPH, SPAN_POINT_MARK, SPAN_POINT_MARK_MASK, SPAN_POINT_POINT, SPAN_PRIORITY, SPAN_PRIORITY_SHIFT, SPAN_USER, SPAN_USER_SHIFT
-
Method Summary
Modifier and TypeMethodDescriptionvoid
removeSpan
(Object span) Remove the specified object from the range of text to which it was attached, if any.default void
removeSpan
(Object span, int flags) Remove the specified object from the range of text to which it was attached, if any.void
Attach the specified markup object to the rangestart…end
of the text, or move the object to that range if it was already attached elsewhere.Methods inherited from interface java.lang.CharSequence
charAt, chars, codePoints, isEmpty, length, subSequence, toString
Methods inherited from interface icyllis.modernui.text.Spanned
getSpanEnd, getSpanFlags, getSpans, getSpans, getSpanStart, nextSpanTransition
-
Field Details
-
DEFAULT_FACTORY
Standard factory.
-
-
Method Details
-
setSpan
Attach the specified markup object to the rangestart…end
of the text, or move the object to that range if it was already attached elsewhere. SeeSpanned
for an explanation of what the flags mean. The object can be one that has meaning only within your application, or it can be one that the text system will use to affect text display or behavior. Some noteworthy ones are the subclasses ofCharacterStyle
andParagraphStyle
, andTextWatcher
andSpanWatcher
.- Parameters:
span
- the markup objectstart
- the start char index of the spanend
- the end char index of the spanflags
- the flags of the span
-
removeSpan
Remove the specified object from the range of text to which it was attached, if any.
It is OK to remove an object that was never attached in the first place.- Parameters:
span
- markup object to remove
-
removeSpan
Remove the specified object from the range of text to which it was attached, if any.
It is OK to remove an object that was never attached in the first place.See
Spanned
for an explanation of what the flags mean.- Parameters:
span
- markup object to removeflags
- flags
-