Changed Classes and Interfaces
|
AutoText
|
This class accesses a dictionary of corrections to frequent misspellings. |
BoringLayout
|
A BoringLayout is a very simple Layout implementation for text that
fits on a single line and is all left-to-right characters. |
DynamicLayout
|
DynamicLayout is a text layout that updates itself as the text is edited. |
Editable
|
This is the interface for text whose content and markup
can be changed (as opposed
to immutable text like Strings). |
Html
|
This class processes HTML strings into displayable styled text. |
Html.TagHandler
|
Is notified when HTML tags are encountered that the parser does
not know how to interpret. |
InputFilter
|
InputFilters can be attached to Editables to constrain the
changes that can be made to them. |
InputFilter.AllCaps
|
This filter will capitalize all the lower case letters that are added
through edits. |
InputFilter.LengthFilter
|
This filter will constrain edits not to make the length of the text
greater than the specified length. |
Layout
|
A base class that manages text layout in visual elements on
the screen. |
LoginFilter
|
Abstract class for filtering login-related text (user names and passwords) |
LoginFilter.PasswordFilterGMail
|
This filter is compatible with GMail passwords which restricts characters to
the Latin-1 (ISO8859-1) char set. |
LoginFilter.UsernameFilterGMail
|
This filter rejects characters in the user name that are not compatible with GMail
account creation. |
LoginFilter.UsernameFilterGeneric
|
This filter rejects characters in the user name that are not compatible with Google login. |
SpannableStringBuilder
|
This is the class for text whose content and markup can both be changed. |
Spanned
|
This is the interface for text that has markup objects attached to
ranges of it. |
StaticLayout
|
StaticLayout is a Layout for text that will not be edited after it
is laid out. |
TextPaint
|
TextPaint is an extension of Paint that leaves room for some extra
data used during text measuring and drawing. |
TextUtils
|
|
TextWatcher
|
When an object of a type is attached to an Editable, its methods will
be called when the text is changed. |