Summary:
Methods
| Inherited Methods
ListViewCompat
public
final
class
ListViewCompat
extends Object
| java.lang.Object | |
| ↳ | androidx.core.widget.ListViewCompat |
Helper for accessing features in ListView
Summary
Public methods | |
|---|---|
static
boolean
|
canScrollList(ListView listView, int direction)
Check if the items in the list can be scrolled in a certain direction. |
static
void
|
scrollListBy(ListView listView, int y)
Scrolls the list items within the view by a specified number of pixels. |
Inherited methods | |
|---|---|
Public methods
canScrollList
public static boolean canScrollList (ListView listView, int direction)
Check if the items in the list can be scrolled in a certain direction.
| Parameters | |
|---|---|
listView |
ListView |
direction |
int: Negative to check scrolling up, positive to check
scrolling down. |
| Returns | |
|---|---|
boolean |
true if the list can be scrolled in the specified direction, false otherwise. |
See also:
scrollListBy
public static void scrollListBy (ListView listView, int y)
Scrolls the list items within the view by a specified number of pixels.
| Parameters | |
|---|---|
listView |
ListView: the list to scroll |
y |
int: the amount of pixels to scroll by vertically
|