I have a WebView with a number of anchors like this:
<a name='some_id'></a>
I am able to jump to the anchors using something like:
webView.loadUrl("javascript:(function() { " +
"window.location.hash='#" + hash + "';" +
"})()");
But is it possible to smoothly scroll to the anchors somehow?