Interface | Description |
---|---|
KeyListener |
Interface for converting text key events into edit operations on an
Editable class.
|
MovementMethod |
Provides cursor positioning, scrolling and text selection functionality in a
TextView . |
TransformationMethod |
TextView uses TransformationMethods to do things like replacing the
characters of passwords with dots, or keeping the newline characters
from causing line breaks in single-line text fields.
|
TransformationMethod2 |
TransformationMethod2 extends the TransformationMethod interface
and adds the ability to relax restrictions of TransformationMethod.
|
Class | Description |
---|---|
AllCapsTransformationMethod |
Transforms source text into an ALL CAPS string, locale-aware.
|
ArrowKeyMovementMethod |
A movement method that provides cursor movement and selection.
|
BaseKeyListener |
Abstract base class for key listeners.
|
BaseMovementMethod |
Base classes for movement methods.
|
CharacterPickerDialog |
Dialog for choosing accented characters related to a base character.
|
DateKeyListener |
For entering dates in a text field.
|
DateTimeKeyListener |
For entering dates and times in the same text field.
|
DialerKeyListener |
For dialing-only text entry
As for all implementations of
KeyListener , this class is only concerned
with hardware keyboards. |
DigitsKeyListener |
For digits-only text entry
As for all implementations of
KeyListener , this class is only concerned
with hardware keyboards. |
HideReturnsTransformationMethod |
This transformation method causes any carriage return characters (\r)
to be hidden by displaying them as zero-width non-breaking space
characters (?).
|
LinkMovementMethod |
A movement method that traverses links in the text buffer and scrolls if necessary.
|
MetaKeyKeyListener |
This base class encapsulates the behavior for tracking the state of
meta keys such as SHIFT, ALT and SYM as well as the pseudo-meta state of selecting text.
|
MultiTapKeyListener |
This is the standard key listener for alphabetic input on 12-key
keyboards.
|
NumberKeyListener |
For numeric text entry
As for all implementations of
KeyListener , this class is only concerned
with hardware keyboards. |
PasswordTransformationMethod | |
QwertyKeyListener |
This is the standard key listener for alphabetic input on qwerty
keyboards.
|
ReplacementTransformationMethod |
This transformation method causes the characters in the
ReplacementTransformationMethod.getOriginal()
array to be replaced by the corresponding characters in the
ReplacementTransformationMethod.getReplacement() array. |
ScrollingMovementMethod |
A movement method that interprets movement keys by scrolling the text buffer.
|
SingleLineTransformationMethod |
This transformation method causes any newline characters (\n) to be
displayed as spaces instead of causing line breaks, and causes
carriage return characters (\r) to have no appearance.
|
TextKeyListener |
This is the key listener for typing normal text.
|
TimeKeyListener |
For entering times in a text field.
|
Touch | |
WordIterator |
Walks through cursor positions at word boundaries.
|
Enum | Description |
---|---|
TextKeyListener.Capitalize |