Android ScrollView doesn't start at top, but at the beginning of the GridView

后端 未结 12 2489
天涯浪人
天涯浪人 2020-12-23 11:19

I have a problem with a ScrollView that has inside of it a personalized GridView and other tipe of views.The first time I start the Activity, the ScrollView starts at its to

12条回答
  •  不思量自难忘°
    2020-12-23 11:58

    I had a similar issue and something totally different worked for me. I had the following sort of view hierarchy -

    
        
        
            
            
            
        
    
    

    And the view used to open already scrolled till the view pager. I simply added android:focusable="true" to the first element of scroll view to fix this, as follows -

    
        
        
            
            
            
        
    
    

提交回复
热议问题