Android RelativeLayout : how to alignParentBottom when wrapped in a ScrollView?

后端 未结 5 880
情话喂你
情话喂你 2020-12-05 13:31

The problem I am having seems to be that if I have a view (e.g. myButton) inside a RelativeLayout set to alignParentBottom - (as per the code below) - and then wrap the Rela

5条回答
  •  时光说笑
    2020-12-05 13:43

    It's a little bit late, but the simpliest solution is to add

    android:below="@id/lots_of_stuffs"
    

    Like this:

    
    
       
    
    
         
    
           ... lots of views and stuff
    
         
    
        

提交回复
热议问题