Nested scrollview automatically scrolls to bottom Nested scrollview automatically scrolls to bottom android android

Nested scrollview automatically scrolls to bottom


Add android:descendantFocusability="blocksDescendants" to the child layout in NestedScrollView


If I add nestedScrollView.scrollTo(0, 0); to the end of the onLayoutChanged() method of the GridView the issue is resolved. However, it would make more sense to prevent the nestedScrollView from automatically scrolling in the first place.

Ideas?