[Expand]
Inherited Methods |
From class android.text.method.ScrollingMovementMethod
boolean
|
canSelectArbitrarily()
Returns true if this movement method allows arbitrary selection
of any text; false if it has no selection (like a movement method
that only scrolls) or a constrained selection (for example
limited to links.
|
boolean
|
down(TextView widget, Spannable buffer)
Scrolls the text down if possible.
|
static
MovementMethod
|
getInstance()
|
void
|
initialize(TextView widget, Spannable text)
|
boolean
|
left(TextView widget, Spannable buffer)
Scrolls the text to the left if possible.
|
boolean
|
onKeyDown(TextView widget, Spannable buffer, int keyCode, KeyEvent event)
|
boolean
|
onKeyOther(TextView view, Spannable text, KeyEvent event)
If the key listener wants to other kinds of key events, return true,
otherwise return false and the caller (i.e.
|
boolean
|
onKeyUp(TextView widget, Spannable buffer, int keyCode, KeyEvent event)
|
void
|
onTakeFocus(TextView widget, Spannable text, int dir)
|
boolean
|
onTouchEvent(TextView widget, Spannable buffer, MotionEvent event)
|
boolean
|
onTrackballEvent(TextView widget, Spannable text, MotionEvent event)
|
boolean
|
right(TextView widget, Spannable buffer)
Scrolls the text to the right if possible.
|
boolean
|
up(TextView widget, Spannable buffer)
Scrolls the text up if possible.
|
|
From class java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Is called before the object's memory is being reclaimed by the VM.
|
final
Class<? extends Object>
|
getClass()
Returns the unique instance of Class which represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
|
From interface android.text.method.MovementMethod
abstract
boolean
|
canSelectArbitrarily()
Returns true if this movement method allows arbitrary selection
of any text; false if it has no selection (like a movement method
that only scrolls) or a constrained selection (for example
limited to links.
|
abstract
void
|
initialize(TextView widget, Spannable text)
|
abstract
boolean
|
onKeyDown(TextView widget, Spannable text, int keyCode, KeyEvent event)
|
abstract
boolean
|
onKeyOther(TextView view, Spannable text, KeyEvent event)
If the key listener wants to other kinds of key events, return true,
otherwise return false and the caller (i.e.
|
abstract
boolean
|
onKeyUp(TextView widget, Spannable text, int keyCode, KeyEvent event)
|
abstract
void
|
onTakeFocus(TextView widget, Spannable text, int direction)
|
abstract
boolean
|
onTouchEvent(TextView widget, Spannable text, MotionEvent event)
|
abstract
boolean
|
onTrackballEvent(TextView widget, Spannable text, MotionEvent event)
|
|