Home | History | Annotate | Download | only in text

Lines Matching defs:Editable

23  * of an Editable, the layout will be reflowed as the text is changed.
25 public interface Editable
30 * Editable with a copy of the slice <code>start&hellip;end</code> from
40 * is Spanned, the spans from it are preserved into the Editable.
41 * Existing spans within the Editable that entirely cover the replaced
52 public Editable replace(int st, int en, CharSequence source, int start, int end);
58 public Editable replace(int st, int en, CharSequence text);
64 public Editable insert(int where, CharSequence text, int start, int end);
70 public Editable insert(int where, CharSequence text);
76 public Editable delete(int st, int en);
82 public Editable append(CharSequence text);
88 public Editable append(CharSequence text, int start, int end);
94 public Editable append(char text);
105 * Removes all spans from the Editable, as if by calling
112 * whenever the text of this Editable is changed, each of which has
119 * to changes to this Editable.
124 * Factory used by TextView to create new {@link Editable Editables}. You can subclass
130 private static Editable.Factory sInstance = new Editable.Factory();
133 * Returns the standard Editable Factory.
135 public static Editable.Factory getInstance() {
144 public Editable newEditable(CharSequence source) {