I want to perform some action when a scroll event has happened in android webview. Is there any way to do that
I tried this
OnTouchListener onTouchListener = new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
int action = event.getAction();
if (action == MotionEvent.ACTION_UP) {
//do something
}
return false;
}
};
but it is not working... Is there anything like a scroll listener in android for a webview