Skip to content

Instantly share code, notes, and snippets.

@MrThiago
Created April 25, 2018 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrThiago/46d5d3baf19832965cb506a1a1872611 to your computer and use it in GitHub Desktop.
Save MrThiago/46d5d3baf19832965cb506a1a1872611 to your computer and use it in GitHub Desktop.
How to Disable auto-scroll after load in Android
# Adding the "descendantFocusability" attribute to the ScrollView's containing LinearLayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants" >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment