After adding a ScrollView, the the app title is no longer displayed

前端 未结 1 623
广开言路
广开言路 2021-01-22 17:34

Hi in the below code i have a login layout in that contains email id and password are the attributes.

Now want to display my layout in landscape mode.because of that i j

1条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-22 18:17

    Your title is not displaying because the height of your ScrollView is match_parent

    So your RelativeLayout is hiding behind ScrollView

    Just add android:layout_below="@id/toolbarRel" in your ScrollView

    SAMPLE CODE

    
    
    
        
    
            
    
                
            
        
    
        
    
            
    
                
    
                
    
                

    UPDATE

    
    
    
        
    
            
    
                
            
        
    
        
    
            
    
                
    
                
    
                

    0 讨论(0)
提交回复
热议问题