My Android app uses a WebView to display a bunch of HTML code that I generate \'on the fly\'. The HTML code is loaded using the following code:
if you load the html from the assets:
assets
webView.loadUrl("file:///android_asset/htmls/mypage.html#anchor");
and you can move to the anchor inside a web page:
webView.loadUrl("http://www.stackoverflow.com/mypage.html#anchor");