I'm looking for a way to navigate between a long list of elements (TextViews) on Android that are in the same Activity (each element within a TableRow). So that the user does not have to do a long scroll looking for the section that interests him, it would be ideal to have buttons at the top that take you to the "height" where the element is. Basically I need the functionality of a button to a local link (the id of a TextView) within the same Activity Is there something like that?
Update
Thanks to the response of @ x4mp73r, this was my final code:
private final void focusOnView(){
myScrollView.post(new Runnable() {
@Override
public void run() {
myScrollView.smoothScrollTo(0, myTableRow.getTop());
}
});
}