I am using an Android WebView to show some HTML content (a String with HTML tags to be precise) generated at runtime. The content has basically an HTML &l
String
&l
Can you try something like this:
if (_webView.getScrollY() + _webView.getHeight() > _webView.getContentHeight()) _webView.scrollTo(0, _webView.getContentHeight() - _webView.getHeight());