java.lang.Object | ||
↳ | android.support.v4.widget.AutoScrollHelper | |
↳ | android.support.v4.widget.ListViewAutoScrollHelper |
An implementation of AutoScrollHelper
that knows how to scroll
through a ListView
.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.support.v4.widget.AutoScrollHelper
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Override this method to return whether the target view can be scrolled
horizontally in a certain direction.
| |||||||||||
Override this method to return whether the target view can be scrolled
vertically in a certain direction.
| |||||||||||
Override this method to scroll the target view by the specified number of
pixels.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.support.v4.widget.AutoScrollHelper
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
android.view.View.OnTouchListener
|
Override this method to return whether the target view can be scrolled horizontally in a certain direction.
direction | Negative to check scrolling left, positive to check scrolling right. |
---|
Override this method to return whether the target view can be scrolled vertically in a certain direction.
direction | Negative to check scrolling up, positive to check scrolling down. |
---|
Override this method to scroll the target view by the specified number of pixels.
deltaX | The number of pixels to scroll by horizontally. |
---|---|
deltaY | The number of pixels to scroll by vertically. |