Created
April 15, 2015 12:14
Disabling auto-scroll scrollview, after data in webview is loaded
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, with the value "blockDescendants". In my case: | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:orientation="vertical" | |
android:descendantFocusability="blocksDescendants" > |
Thanks, this helps me so much
Good thank you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nice !