Searched defs:scrollState (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridScrollListener.java66 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
H A DGridScrollListenerTest.java108 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListScrollListenerTest.java103 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
H A DListScrollListener.java70 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java1268 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
1269 if (scrollState == SCROLL_STATE_TOUCH_SCROLL &&
H A DCalendarView.java754 public void onScrollStateChanged(AbsListView view, int scrollState) {
755 CalendarView.this.onScrollStateChanged(view, scrollState);
856 * Called when a <code>view</code> transitions to a new <code>scrollState
859 private void onScrollStateChanged(AbsListView view, int scrollState) { argument
860 mScrollStateChangedRunnable.doScrollStateChange(view, scrollState);
981 * @param scrollState The new state it changed to
983 public void doScrollStateChange(AbsListView view, int scrollState) { argument
985 mNewState = scrollState;
H A DNumberPicker.java488 * @param scrollState The current scroll state. One of
493 public void onScrollStateChange(NumberPicker view, int scrollState); argument
1584 * Handles transition to a given <code>scrollState</code>
1586 private void onScrollStateChange(int scrollState) { argument
1587 if (mScrollState == scrollState) {
1590 mScrollState = scrollState;
1592 mOnScrollListener.onScrollStateChange(this, scrollState);
H A DAbsListView.java685 * @param scrollState The current scroll state. One of {@link #SCROLL_STATE_IDLE},
688 public void onScrollStateChanged(AbsListView view, int scrollState); argument

Completed in 161 milliseconds