Google is committed to advancing racial equity for Black communities. See how.
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 Editable. 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 SpannedStringBuilder 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 SpannedStringBuilder from the specified CharSequence. You can override this to provide a different kind of Spanned.

Parameters
source CharSequence

Returns
Editable