I need to know how to detect if the user can’t scroll anymore in a webView. I want to generate an action when the user swipes to the left or right, but only if the user can’t scroll:
IF the user swipes to the left AND the webview can't scroll to left THEN
do something
ELSE
let the webview scroll
I found a solution which work for me, I check the source code of class WebView in 2.3 API and find how to do it with a 2.1 API. Maybe it can work with older API: