I have created one activity which is containing one map, image and another text view, and I have added \"scrollview\" tag for it. But after the activity starts it scrolls to the
What worked for me is a combination of the answers from Punit Sharma and FAЯAƸ.
My issue was a scrollable view (RecyclerView) inside another scrollable view (NestedScrollView) -- same as your WebView inside a ScrollView.
Wrapping my inner scrollable view inside a FragmentLayout
with attribute android:descendantFocusability="blocksDescendants"
solved my auto-to-bottom-scrolling issue.
....