I realize the title is confusing, but I'm not sure how to summarize my problem.
So in HTML, you can have a webpage
reallyLongWebpage.html
And when you open it in a browser it opens it at the top of the document. But if, instead, you navigate to
reallyLongWebpage.html#section46
then it will open the webpage, but scroll down to whereever <a name="section46"></a>
is on the page.
I'm trying to do a similar thing with my android app.
I have an activity with a fair amount of content (not a huge amount, but still a little too much to scroll down every time to find what you want). I know how to use intents and send parameters, but on the activity itself, how do I take the value (e.g. "scroll to anchor 7") and scroll to the appropriate positon?