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

/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java141 public void onScrollChanged(); method in interface:ViewTreeObserver.OnScrollChangedListener
731 access.get(i).onScrollChanged();
H A DView.java8552 protected void onScrollChanged(int l, int t, int oldl, int oldt) { method in class:View
8622 * {@link #onScrollChanged(int, int, int, int)} and the view will be
8632 * {@link #onScrollChanged(int, int, int, int)} and the view will be
10038 * {@link #onScrollChanged(int, int, int, int)} and the view will be
10050 onScrollChanged(mScrollX, mScrollY, oldX, oldY);
10059 * {@link #onScrollChanged(int, int, int, int)} and the view will be
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java323 public void onScrollChanged(int l, int t, int oldl, int oldt); method in interface:WebViewProvider.ViewDelegate
H A DWebView.java1831 public void onScrollChanged(int l, int t, int oldl, int oldt) { method in class:WebView.PrivateAccess
1832 WebView.this.onScrollChanged(l, t, oldl, oldt);
1840 /** Raw setter for the scroll X value, without invoking onScrollChanged handlers etc. */
1845 /** Raw setter for the scroll Y value, without invoking onScrollChanged handlers etc. */
2103 protected void onScrollChanged(int l, int t, int oldl, int oldt) { method in class:WebView
2104 super.onScrollChanged(l, t, oldl, oldt);
2105 mProvider.getViewDelegate().onScrollChanged(l, t, oldl, oldt);
H A DWebViewClassic.java1455 // Setters for the Scroll X & Y, without invoking the onScrollChanged etc code paths.
3896 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), getScrollX(), getScrollY());
4717 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldScrollX, oldScrollY);
5678 public void onScrollChanged(int l, int t, int oldl, int oldt) { method in class:WebViewClassic
6763 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldX, oldY);
/frameworks/base/core/java/android/widget/
H A DEditor.java1660 void onScrollChanged() { method in class:Editor
1662 mPositionListener.onScrollChanged();
2072 public void onScrollChanged() { method in class:Editor.PositionListener
H A DTextView.java7939 protected void onScrollChanged(int horiz, int vert, int oldHoriz, int oldVert) { method in class:TextView
7940 super.onScrollChanged(horiz, vert, oldHoriz, oldVert);
7942 mEditor.onScrollChanged();

Completed in 578 milliseconds