Android ScrollView automatically scrolls to the bottom of the view

前端 未结 6 1601
半阙折子戏
半阙折子戏 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:22

    I also face the same scenario once but adding the descendantFocusability attribute to the ScrollView's containing LinearLayout, solve my issue.

    android:descendantFocusability="blocksDescendants"
    

    you can use this as :

    
    

提交回复
热议问题