Added in API level 1

Editable.Factory

public static class Editable.Factory
extends Object

java.lang.Object
   ↳ android.text.Editable.Factory


Factory used by TextView to create new Editables. You can subclass it to provide something other than SpannableStringBuilder.

Summary

Public constructors

Factory()

Public methods

static Editable.Factory getInstance()

Returns the standard Editable Factory.

Editable newEditable(CharSequence source)

Returns a new SpannableStringBuilder from the specified CharSequence.

Inherited methods

Public constructors

Factory

public Factory ()

Public methods

getInstance

Added in API level 1
public static Editable.Factory getInstance ()

Returns the standard Editable Factory.

Returns
Editable.Factory

newEditable

Added in API level 1
public Editable newEditable (CharSequence source)

Returns a new SpannableStringBuilder from the specified CharSequence. You can override this to provide a different kind of Spanned.

Parameters
source CharSequence

Returns
Editable