public class SpannableStringBuilder
extends Object
implements CharSequence, GetChars, Spannable, Editable, Appendable, CharSequence
java.lang.Object | |
↳ | android.text.SpannableStringBuilder |
这是可以更改内容和标记的文本的类。
Inherited constants |
---|
From interface android.text.Spanned
|
Public constructors |
|
---|---|
SpannableStringBuilder() 用空白内容创建一个新的SpannableStringBuilder |
|
SpannableStringBuilder(CharSequence text) 创建一个新的SpannableStringBuilder,其中包含指定文本的副本,包括其跨度(如果有)。 |
|
SpannableStringBuilder(CharSequence text, int start, int end) 创建一个新的SpannableStringBuilder,其中包含指定文本的指定切片的副本,包括其跨度(如果有)。 |
Public methods |
|
---|---|
SpannableStringBuilder |
append(char text) 方便追加(String.valueOf(文本))。 |
SpannableStringBuilder |
append(CharSequence text, Object what, int flags) 附加字符序列 |
SpannableStringBuilder |
append(CharSequence text, int start, int end) 方便替换(length(),length(),text,start,end) |
SpannableStringBuilder |
append(CharSequence text) 方便替换(length(),length(),text,0,text.length()) |
char |
charAt(int where) 返回缓冲区内指定偏移量的char。 |
void |
clear() 方便替换(0,长度(),“”,0,0) |
void |
clearSpans() 从Editable中删除所有跨度,就好像通过在每个 |
SpannableStringBuilder |
delete(int start, int end) 方便替换(st,en,“”,0,0) |
boolean |
equals(Object o) 指示其他某个对象是否“等于”这一个。 |
void |
getChars(int start, int end, char[] dest, int destoff) 将指定范围的字符从此缓冲区复制到指定的数组中,从指定的偏移量开始。 |
InputFilter[] |
getFilters() 返回当前应用于对此“可编辑”进行更改的输入过滤器数组。 |
int |
getSpanEnd(Object what) 返回指定标记对象末尾的缓冲区偏移量,如果未连接到此缓冲区,则返回-1。 |
int |
getSpanFlags(Object what) 返回指定标记对象末尾的标志,如果未附加到此缓冲区,则返回0。 |
int |
getSpanStart(Object what) 返回指定标记对象开始处的缓冲区偏移量,如果未连接到此缓冲区,则返回-1。 |
<T> T[] |
getSpans(int queryStart, int queryEnd, Class<T> kind) 返回指定类型跨度与缓冲区指定范围重叠的数组。 |
int |
getTextRunCursor(int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p) 此方法在API级别12中已弃用。这是一种内部方法,请勿在代码中使用它 |
int |
getTextWatcherDepth() 返回TextWatcher回调的深度。 |
int |
hashCode() 返回对象的哈希码值。 |
SpannableStringBuilder |
insert(int where, CharSequence tb) 方便替换(where,where,text,0,text.length()); |
SpannableStringBuilder |
insert(int where, CharSequence tb, int start, int end) 方便替换(在哪里,在哪里,文字,开始,结束) |
int |
length() 返回缓冲区中的字符数。 |
int |
nextSpanTransition(int start, int limit, Class kind) 返回 |
void |
removeSpan(Object what) 从缓冲区中删除指定的标记对象。 |
SpannableStringBuilder |
replace(int start, int end, CharSequence tb, int tbstart, int tbend) 替换指定范围( |
SpannableStringBuilder |
replace(int start, int end, CharSequence tb) 方便替换(st,en,text,0,text.length()) |
void |
setFilters(InputFilter[] filters) 设置每当此Editable的文本发生更改时都会连续调用的一系列过滤器,每个过滤器都有机会限制或转换正在插入的文本。 |
void |
setSpan(Object what, int start, int end, int flags) 用指定的对象标记指定的文本范围。 |
CharSequence |
subSequence(int start, int end) 返回包含此缓冲区指定范围的副本的新CharSequence,包括重叠跨度。 |
String |
toString() 返回包含此缓冲区中字符副本的字符串。 |
static SpannableStringBuilder |
valueOf(CharSequence source) |
Inherited methods |
|
---|---|
From class java.lang.Object
|
|
From interface java.lang.CharSequence
|
|
From interface android.text.GetChars
|
|
From interface android.text.Spannable
|
|
From interface android.text.Editable
|
|
From interface java.lang.Appendable
|
|
From interface android.text.Spanned
|
SpannableStringBuilder ()
用空白内容创建一个新的SpannableStringBuilder
SpannableStringBuilder (CharSequence text)
创建一个新的SpannableStringBuilder,其中包含指定文本的副本,包括其跨度(如果有)。
Parameters | |
---|---|
text |
CharSequence
|
SpannableStringBuilder (CharSequence text, int start, int end)
创建一个新的SpannableStringBuilder,其中包含指定文本的指定切片的副本,包括其跨度(如果有)。
Parameters | |
---|---|
text |
CharSequence
|
start |
int
|
end |
int
|
SpannableStringBuilder append (char text)
方便追加(String.valueOf(文本))。
Parameters | |
---|---|
text |
char : The character to append |
Returns | |
---|---|
SpannableStringBuilder |
A reference to this Appendable |
SpannableStringBuilder append (CharSequence text, Object what, int flags)
附加字符序列text
并跨越附加部分跨越what
。 请参阅Spanned
了解标志的含义。
Parameters | |
---|---|
text |
CharSequence : the character sequence to append. |
what |
Object : the object to be spanned over the appended text. |
flags |
int : see Spanned . |
Returns | |
---|---|
SpannableStringBuilder |
this SpannableStringBuilder . |
SpannableStringBuilder append (CharSequence text, int start, int end)
方便替换(length(),length(),text,start,end)
Parameters | |
---|---|
text |
CharSequence : The character sequence from which a subsequence will be appended. If csq is null, then characters will be appended as if csq contained the four characters "null". |
start |
int : The index of the first character in the subsequence |
end |
int : The index of the character following the last character in the subsequence |
Returns | |
---|---|
SpannableStringBuilder |
A reference to this Appendable |
SpannableStringBuilder append (CharSequence text)
方便替换(length(),length(),text,0,text.length())
Parameters | |
---|---|
text |
CharSequence : The character sequence to append. If csq is null, then the four characters "null" are appended to this Appendable. |
Returns | |
---|---|
SpannableStringBuilder |
A reference to this Appendable |
char charAt (int where)
返回缓冲区内指定偏移量的char。
Parameters | |
---|---|
where |
int : the index of the char value to be returned |
Returns | |
---|---|
char |
the specified char value |
void clearSpans ()
从Editable中删除所有跨度,就好像通过在每个 removeSpan(Object)
上调用 removeSpan(Object)
一样。
SpannableStringBuilder delete (int start, int end)
方便替换(st,en,“”,0,0)
Parameters | |
---|---|
start |
int
|
end |
int
|
Returns | |
---|---|
SpannableStringBuilder |
boolean equals (Object o)
指示其他某个对象是否“等于”这一个。
equals
方法在非空对象引用上实现等价关系:
x
, x.equals(x)
should return true
. x
and y
, x.equals(y)
should return true
if and only if y.equals(x)
returns true
. x
, y
, and z
, if x.equals(y)
returns true
and y.equals(z)
returns true
, then x.equals(z)
should return true
. x
and y
, multiple invocations of x.equals(y)
consistently return true
or consistently return false
, provided no information used in equals
comparisons on the objects is modified. x
, x.equals(null)
should return false
. 类Object
的equals
方法实现了对象上最可能的等价关系; 也就是说,对于任何非空参考值x
和y
,当且仅当x
和y
指向同一对象( x == y
的值为true
)时,此方法返回true
。
请注意,无论何时覆盖此方法,通常都需要重写 hashCode
方法,以便维护 hashCode
方法的一般合同,该方法声明等同对象必须具有相同的哈希码。
Parameters | |
---|---|
o |
Object : the reference object with which to compare. |
Returns | |
---|---|
boolean |
true if this object is the same as the obj argument; false otherwise. |
void getChars (int start, int end, char[] dest, int destoff)
将指定范围的字符从此缓冲区复制到指定的数组中,从指定的偏移量开始。
Parameters | |
---|---|
start |
int
|
end |
int
|
dest |
char
|
destoff |
int
|
InputFilter[] getFilters ()
返回当前应用于对此“可编辑”进行更改的输入过滤器数组。
Returns | |
---|---|
InputFilter[] |
int getSpanEnd (Object what)
返回指定标记对象末尾的缓冲区偏移量,如果未连接到此缓冲区,则返回-1。
Parameters | |
---|---|
what |
Object
|
Returns | |
---|---|
int |
int getSpanFlags (Object what)
返回指定标记对象末尾的标志,如果未附加到此缓冲区,则返回0。
Parameters | |
---|---|
what |
Object
|
Returns | |
---|---|
int |
int getSpanStart (Object what)
返回指定标记对象开始处的缓冲区偏移量,如果未连接到此缓冲区,则返回-1。
Parameters | |
---|---|
what |
Object
|
Returns | |
---|---|
int |
T[] getSpans (int queryStart, int queryEnd, Class<T> kind)
返回指定类型跨度与缓冲区指定范围重叠的数组。 类型可以是Object.class来获得所有跨度的列表,而不管类型。
Parameters | |
---|---|
queryStart |
int
|
queryEnd |
int
|
kind |
Class
|
Returns | |
---|---|
T[] |
int getTextRunCursor (int contextStart, int contextEnd, int dir, int offset, int cursorOpt, Paint p)
此方法在API级别12中已被弃用。
这是一种内部方法,不要在代码中使用它
返回运行中的下一个光标位置。 这样可以避免将光标置于替代项之间,形成连词的字符之间,基本字符与组合标记之间或重排序群集内。
上下文是光标移动的形状上下文,通常是围绕光标在移动方向上的公制范围的边界。 contextStart
, contextEnd
和offset
是相对于字符串的开头。
如果cursorOpt是CURSOR_AT,并且偏移量不是有效的光标位置,则返回-1。 否则,这将永远不会在contextStart或contextEnd之前返回一个值。
Parameters | |
---|---|
contextStart |
int : the start index of the context |
contextEnd |
int : the (non-inclusive) end index of the context |
dir |
int : either DIRECTION_RTL or DIRECTION_LTR |
offset |
int : the cursor position to move from |
cursorOpt |
int : how to move the cursor, one of CURSOR_AFTER, CURSOR_AT_OR_AFTER, CURSOR_BEFORE, CURSOR_AT_OR_BEFORE, or CURSOR_AT |
p |
Paint : the Paint object that is requesting this information |
Returns | |
---|---|
int |
the offset of the next position, or -1 |
int getTextWatcherDepth ()
返回TextWatcher回调的深度。 当对象不处理TextWatchers时,返回0。 返回值大于1意味着TextWatcher引起了递归触发TextWatcher的更改。
Returns | |
---|---|
int |
int hashCode ()
返回对象的哈希码值。 为了散列表的好处而支持此方法,例如由HashMap
提供的HashMap
。
hashCode
的总合同是:
hashCode
method must consistently return the same integer, provided no information used in equals
comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. equals(Object)
method, then calling the hashCode
method on each of the two objects must produce the same integer result. equals(java.lang.Object)
method, then calling the hashCode
method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables. 尽可能合理实用,类Object
定义的hashCode方法确实为不同的对象返回不同的整数。 (这通常通过将对象的内部地址转换为整数来实现,但Java TM编程语言不需要此实现技术。)
Returns | |
---|---|
int |
a hash code value for this object. |
SpannableStringBuilder insert (int where, CharSequence tb)
方便替换(where,where,text,0,text.length());
Parameters | |
---|---|
where |
int
|
tb |
CharSequence
|
Returns | |
---|---|
SpannableStringBuilder |
SpannableStringBuilder insert (int where, CharSequence tb, int start, int end)
方便替换(在哪里,在哪里,文字,开始,结束)
Parameters | |
---|---|
where |
int
|
tb |
CharSequence
|
start |
int
|
end |
int
|
Returns | |
---|---|
SpannableStringBuilder |
int length ()
返回缓冲区中的字符数。
Returns | |
---|---|
int |
the number of char s in this sequence |
int nextSpanTransition (int start, int limit, Class kind)
返回 start
之后的下一个偏移量,但小于或等于 limit
,其中指定类型的跨度开始或结束。
Parameters | |
---|---|
start |
int
|
limit |
int
|
kind |
Class
|
Returns | |
---|---|
int |
void removeSpan (Object what)
从缓冲区中删除指定的标记对象。
Parameters | |
---|---|
what |
Object
|
SpannableStringBuilder replace (int start, int end, CharSequence tb, int tbstart, int tbend)
将此可编辑文本的指定范围( st…en
)替换为st…en
的片段start…end
的source
。 目的片可能是空的,在这种情况下,操作是插入,或者源片可能是空的,在这种情况下,操作是删除。
在提交更改之前,使用 setFilters(InputFilter[])
设置的每个过滤器 setFilters(InputFilter[])
机会修改 source
文本。
如果source
为source
,则跨度将保存到“可编辑”中。 Editable中的现有跨度完全覆盖替换的范围,但是严格限定在被替换的范围内的任何跨度都将被移除。 如果source
包含带有SPAN_PARAGRAPH
标志的跨度,并且它不符合段落边界约束,则不会保留该段落。 作为一种特殊情况,即使当它所在的整个范围被替换时,光标位置也被保留。
Parameters | |
---|---|
start |
int
|
end |
int
|
tb |
CharSequence
|
tbstart |
int
|
tbend |
int
|
Returns | |
---|---|
SpannableStringBuilder |
a reference to this object. |
SpannableStringBuilder replace (int start, int end, CharSequence tb)
方便替换(st,en,text,0,text.length())
Parameters | |
---|---|
start |
int
|
end |
int
|
tb |
CharSequence
|
Returns | |
---|---|
SpannableStringBuilder |
void setFilters (InputFilter[] filters)
设置每当此Editable的文本发生更改时都会连续调用的一系列过滤器,每个过滤器都有机会限制或转换正在插入的文本。
Parameters | |
---|---|
filters |
InputFilter
|
void setSpan (Object what, int start, int end, int flags)
用指定的对象标记指定的文本范围。 这些标志决定了跨度范围开始或结束处插入文本时量程的表现方式。
Parameters | |
---|---|
what |
Object
|
start |
int
|
end |
int
|
flags |
int
|
CharSequence subSequence (int start, int end)
返回包含此缓冲区指定范围的副本的新CharSequence,包括重叠跨度。
Parameters | |
---|---|
start |
int : the start index, inclusive |
end |
int : the end index, exclusive |
Returns | |
---|---|
CharSequence |
the specified subsequence |
String toString ()
返回包含此缓冲区中字符副本的字符串。
Returns | |
---|---|
String |
a string representation of the object. |
SpannableStringBuilder valueOf (CharSequence source)
Parameters | |
---|---|
source |
CharSequence
|
Returns | |
---|---|
SpannableStringBuilder |