public static class

Editable.Factory

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

Class Overview

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

Summary

Public Constructors
Editable.Factory()
Public Methods
static Editable.Factory getInstance()
Returns the standard Editable Factory.
Editable newEditable(CharSequence source)
Returns a new SpannedStringBuilder from the specified CharSequence.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Editable.Factory ()

Since: API Level 1

Public Methods

public static Editable.Factory getInstance ()

Since: API Level 1

Returns the standard Editable Factory.

public Editable newEditable (CharSequence source)

Since: API Level 1

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