I have a problem detecting when WebView is scrolled to bottom. I use following code:
WebView
@Override protected void onScrollChanged(int x, int y, int
Got the exact result with following:
@Override protected void onScrollChanged(int x, int y, int oldX, int oldY) { super.onScrollChanged(x, y, oldX, oldY); if (y == computeVerticalScrollRange() - getHeight()) { // Trigger listener } }