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
Your title is not displaying because the height of your ScrollView is match_parent
ScrollView
match_parent
So your RelativeLayout is hiding behind ScrollView
RelativeLayout
Just add android:layout_below="@id/toolbarRel" in your ScrollView
android:layout_below="@id/toolbarRel"
SAMPLE CODE
UPDATE