java.lang.Object | ||
↳ | android.text.method.BaseMovementMethod | |
↳ | android.text.method.ScrollingMovementMethod |
Known Direct Subclasses |
A movement method that interprets movement keys by scrolling the text buffer.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Performs a bottom movement action.
| |||||||||||
Performs a down movement action.
| |||||||||||
Performs an end movement action.
| |||||||||||
Performs a home movement action.
| |||||||||||
Performs a left movement action.
| |||||||||||
Performs a line-end movement action.
| |||||||||||
Performs a line-start movement action.
| |||||||||||
Performs a page-down movement action.
| |||||||||||
Performs a page-up movement action.
| |||||||||||
Performs a right movement action.
| |||||||||||
Performs a top movement action.
| |||||||||||
Performs an up movement action.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.text.method.BaseMovementMethod
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
android.text.method.MovementMethod
|
Performs a bottom movement action. Moves the cursor or scrolls to the bottom of the buffer.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a down movement action. Moves the cursor or scrolls down by one line.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs an end movement action. Moves the cursor or scrolls to the start of the line or to the top of the document depending on whether the insertion point is being moved or the document is being scrolled.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a home movement action. Moves the cursor or scrolls to the start of the line or to the top of the document depending on whether the insertion point is being moved or the document is being scrolled.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a left movement action. Moves the cursor or scrolls left by one character.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a line-end movement action. Moves the cursor or scrolls to the end of the line.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a line-start movement action. Moves the cursor or scrolls to the start of the line.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a page-down movement action. Moves the cursor or scrolls down by one page.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a page-up movement action. Moves the cursor or scrolls up by one page.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a right movement action. Moves the cursor or scrolls right by one character.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs a top movement action. Moves the cursor or scrolls to the top of the buffer.
widget | The text view. |
---|---|
buffer | The text buffer. |
Performs an up movement action. Moves the cursor or scrolls up by one line.
widget | The text view. |
---|---|
buffer | The text buffer. |