Android ScrollView automatically scrolls to the bottom of the view

前端 未结 6 1599
半阙折子戏
半阙折子戏 2021-02-06 23:27

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

6条回答
  •  悲哀的现实
    2021-02-07 00:09

    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.

    
    
        
    
            ....
    
            
                
           
    
        
    
    

提交回复
热议问题