Searched defs:onScrollChanged (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java173 public void onScrollChanged(); method in interface:ViewTreeObserver.OnScrollChangedListener
884 access.get(i).onScrollChanged();
H A DView.java8704 protected void onScrollChanged(int l, int t, int oldl, int oldt) { method in class:View
8774 * {@link #onScrollChanged(int, int, int, int)} and the view will be
8784 * {@link #onScrollChanged(int, int, int, int)} and the view will be
10198 * {@link #onScrollChanged(int, int, int, int)} and the view will be
10210 onScrollChanged(mScrollX, mScrollY, oldX, oldY);
10219 * {@link #onScrollChanged(int, int, int, int)} and the view will be
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java329 public void onScrollChanged(int l, int t, int oldl, int oldt); method in interface:WebViewProvider.ViewDelegate
H A DWebView.java1827 public void onScrollChanged(int l, int t, int oldl, int oldt) { method in class:WebView.PrivateAccess
1828 WebView.this.onScrollChanged(l, t, oldl, oldt);
1836 /** Raw setter for the scroll X value, without invoking onScrollChanged handlers etc. */
1841 /** Raw setter for the scroll Y value, without invoking onScrollChanged handlers etc. */
2151 protected void onScrollChanged(int l, int t, int oldl, int oldt) { method in class:WebView
2152 super.onScrollChanged(l, t, oldl, oldt);
2153 mProvider.getViewDelegate().onScrollChanged(l, t, oldl, oldt);
H A DWebViewClassic.java1485 // Setters for the Scroll X & Y, without invoking the onScrollChanged etc code paths.
3934 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), getScrollX(), getScrollY());
4755 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldScrollX, oldScrollY);
5716 public void onScrollChanged(int l, int t, int oldl, int oldt) { method in class:WebViewClassic
6769 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldX, oldY);
/frameworks/base/core/java/android/widget/
H A DEditor.java1694 void onScrollChanged() { method in class:Editor
1696 mPositionListener.onScrollChanged();
2157 public void onScrollChanged() { method in class:Editor.PositionListener
H A DTextView.java8267 protected void onScrollChanged(int horiz, int vert, int oldHoriz, int oldVert) { method in class:TextView
8268 super.onScrollChanged(horiz, vert, oldHoriz, oldVert);
8270 mEditor.onScrollChanged();

Completed in 121 milliseconds