android.text
Interface Editable
- All Superinterfaces:
- Appendable, CharSequence, GetChars, Spannable, Spanned
- All Known Implementing Classes:
- SpannableStringBuilder
public interface Editable
- extends CharSequence, GetChars, Spannable, Appendable
Fields inherited from interface android.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 |
Editable |
append(char text)
|
Editable |
append(CharSequence text)
|
Editable |
append(CharSequence text,
int start,
int end)
|
void |
clear()
|
void |
clearSpans()
|
Editable |
delete(int st,
int en)
|
InputFilter[] |
getFilters()
|
Editable |
insert(int where,
CharSequence text)
|
Editable |
insert(int where,
CharSequence text,
int start,
int end)
|
Editable |
replace(int st,
int en,
CharSequence text)
|
Editable |
replace(int st,
int en,
CharSequence source,
int start,
int end)
|
void |
setFilters(InputFilter[] filters)
|
replace
Editable replace(int st,
int en,
CharSequence source,
int start,
int end)
replace
Editable replace(int st,
int en,
CharSequence text)
insert
Editable insert(int where,
CharSequence text,
int start,
int end)
insert
Editable insert(int where,
CharSequence text)
delete
Editable delete(int st,
int en)
append
Editable append(CharSequence text)
- Specified by:
append
in interface Appendable
append
Editable append(CharSequence text,
int start,
int end)
- Specified by:
append
in interface Appendable
append
Editable append(char text)
- Specified by:
append
in interface Appendable
clear
void clear()
clearSpans
void clearSpans()
setFilters
void setFilters(InputFilter[] filters)
getFilters
InputFilter[] getFilters()
Copyright © 2008-2012. All Rights Reserved.