to top
Android APIs
public static class

Spannable.Factory

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

Class Overview

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

Summary

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

Public Constructors

public Spannable.Factory ()

Added in API level 1

Public Methods

public static Spannable.Factory getInstance ()

Added in API level 1

Returns the standard Spannable Factory.

public Spannable newSpannable (CharSequence source)

Added in API level 1

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