Skip to content

Instantly share code, notes, and snippets.

@thanhcs94
Created July 31, 2015 01:45
Show Gist options
  • Save thanhcs94/4149c95aeb7960194fbd to your computer and use it in GitHub Desktop.
Save thanhcs94/4149c95aeb7960194fbd to your computer and use it in GitHub Desktop.
Android ScrollView setting focus on top
Instead of:
ScrollView main = (ScrollView) findViewById(R.id.main);
main.scrollTo(0,0);
I used:
final ScrollView main = (ScrollView) findViewById(R.id.main);
main.post(new Runnable() {
public void run() {
main.scrollTo(0,0);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment