# Print output for @column tags ?>
public
static
class
Spannable.Factory
extends Object
| java.lang.Object | |
| ↳ | android.text.Spannable.Factory |
Factory used by TextView to create new Spannable. You can subclass
it to provide something other than SpannableString.
See also:
Public constructors | |
|---|---|
Factory()
|
|
Public methods | |
|---|---|
static
Spannable.Factory
|
getInstance()
Returns the standard Spannable Factory. |
Spannable
|
newSpannable(CharSequence source)
Returns a new SpannableString from the specified CharSequence. |
Inherited methods | |
|---|---|
public Factory ()
public static Spannable.Factory getInstance ()
Returns the standard Spannable Factory.
| Returns | |
|---|---|
Spannable.Factory |
|
public Spannable newSpannable (CharSequence source)
Returns a new SpannableString from the specified CharSequence. You can override this to provide a different kind of Spannable.
| Parameters | |
|---|---|
source |
CharSequence |
| Returns | |
|---|---|
Spannable |
|