assuming you're loading a string of html text into a webview, here's one way to do it:
1) give the paragraph you're interested in an id: <p id='paragraphofinterest'>
2) create a "proper" webpage. technically, a webview may be able to render sloppy html correctly,
but at least let's pretend we know what we're doing.
3) add a javascript snippet which runs when the page is loaded. this will automatically take the user
to the paragraph of interest.
here is your template:
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'>
function init() {
var el = document.getElementById('paragraphofinterest');
el.scrollIntoView(true);
}
</script>
</head>
<body onload='init();'>
blah blah blah ...
more blah blah blah ...
<p id='paragraphofinterest'>
when the page is loaded, this is what the user will see at the top of the webview
</p>
</body>
</html>
another way to do it would be to wait until the page has loaded and then inject javascript from b4a.
this would allow you to scroll to different places when the page loads, depending on what you wanted
the user to see. you would just have to have given appropriate id's to various sections of the text. the
actual javacript would be the same; it would simply be run from b4a.
you have said the user is always directed to the same place, so the suggested solution was made with that in mind.