Showing posts with label detect scroll. Show all posts
Showing posts with label detect scroll. Show all posts

Tuesday, July 3, 2012

Android - How to detect scroll inside webview?

Create a custom webview class which extends of course webview :)


public class CustomWebView extends WebView 

Override the following method

@Override
protected void onScrollChanged(int l, int t, int oldl, int oldt) 

int l is x, int is y

Thats it :)