This is the class for text whose content and markup can both be changed.
This is the interface for text to which markup objects can be
attached and detached. Not all Spannable classes have mutable text;
see Editable for that.
This flag is set on spans that are being used to apply temporary
styling information on the composing text of an input method, so that
they can be found and removed when the composing text is being
replaced.
SPAN_PARAGRAPH behaves like SPAN_INCLUSIVE_EXCLUSIVE
(SPAN_MARK_MARK), except that if either end of the span is
at the end of the buffer, that end behaves like _POINT
instead (so SPAN_INCLUSIVE_INCLUSIVE if it starts in the
middle and ends at the end, or SPAN_EXCLUSIVE_INCLUSIVE
if it both starts and ends at the end).
0-length spans with type SPAN_POINT_POINT behave like cursors:
they are pushed forward by the length of the insertion when text
is inserted at their offset.
Return the flags that were specified when Spannable.setSpan(Object, int, int, int) was
used to attach the specified markup object, or 0 if the specified
object has not been attached.
Return the first offset greater than or equal to start
where a markup object of class type begins or ends,
or limit if there are no starts or ends greater than or
equal to start but less than limit.
From interface
java.lang.CharSequence
abstract
char
charAt(int arg0)
IntStream
chars()
IntStream
codePoints()
abstract
int
length()
abstract
CharSequence
subSequence(int arg0, int arg1)
abstract
String
toString()
Public Methods
public
abstract
void
removeSpan(Object what)
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
what
public
abstract
void
setSpan(Object what, int start, int end, int flags)
Attach the specified markup object to the range start…end
of the text, or move the object to that range if it was already
attached elsewhere. See Spanned 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
TextWatcher and SpanWatcher.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[],[]]