Created
April 25, 2018 01:43
-
-
Save MrThiago/46d5d3baf19832965cb506a1a1872611 to your computer and use it in GitHub Desktop.
How to Disable auto-scroll after load in Android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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