<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <RelativeLayout
        android:id="@+id/main_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/landing_screen_profile_bg">
        <RelativeLayout
            android:id="@+id/rel_text_welcome"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="@dimen/_10sdp">
            <TextView
                android:id="@+id/text_welcome"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/welcome"
                android:textColor="@color/white"
                android:textSize="@dimen/_20sdp"
                android:visibility="gone"
                />
        </RelativeLayout>
        <RelativeLayout
            android:id="@+id/rel_layout_user_profile_image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/rel_text_welcome"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="@dimen/_15sdp"
            android:background="@drawable/navigation_activity_round_shape">
            <ImageView
                android:id="@+id/imgProfile"
                android:layout_width="@dimen/_80sdp"
                android:layout_height="@dimen/_80sdp"
                android:layout_centerInParent="true"
                />
        </RelativeLayout>
        <RelativeLayout
            android:id="@+id/rel_layout_name_location"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/rel_layout_user_profile_image">
            <TextView
                android:id="@+id/text_user_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="@dimen/_10sdp"
                android:textColor="#646464"
                android:textSize="@dimen/_16sdp" />
            <TextView
                android:id="@+id/text_location"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/text_user_name"
                android:layout_centerHorizontal="true"
                android:drawableLeft="@drawable/ic_place_black_24dp"
                android:drawablePadding="@dimen/_5sdp"
                android:gravity="center"
                android:padding="@dimen/_5sdp"
                android:text="Fetching location..."
                android:textColor="#646464"
                android:textSize="@dimen/_10sdp" />
        </RelativeLayout>
        <RelativeLayout
            android:id="@+id/relShare"
            android:layout_width="@dimen/_150sdp"
            android:layout_height="@dimen/_40sdp"
            android:layout_below="@+id/rel_layout_name_location"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="@dimen/_5sdp">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:drawableLeft="@drawable/share_ic"
                android:drawablePadding="@dimen/_5sdp"
                android:gravity="center"
                android:padding="@dimen/_5sdp"
                android:text="@string/share_this_app"
                android:textColor="#ffa500"
                android:textSize="@dimen/_12sdp" />
        </RelativeLayout>
        <View
            android:layout_width="match_parent"
            android:layout_height="0.5dp"
            android:layout_below="@+id/relShare"
            android:layout_marginTop="@dimen/_5sdp"
            android:background="#ffa500" />
    </RelativeLayout>
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/main_layout"
        android:fadeScrollbars="false"
        android:scrollbarThumbVertical="@drawable/scroll_bar_background">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/white"
                android:orientation="vertical">
                <RelativeLayout
                    android:id="@+id/customer_home_fragment"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/_40sdp">
                    <TextView
                        android:id="@+id/home_text"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerInParent="true"
                        android:layout_marginLeft="@dimen/_10sdp"
                        android:layout_toRightOf="@+id/image_home"
                        android:text="@string/home"
                        android:textColor="#6d6e71"
                        android:textSize="@dimen/_11sdp" />
                    <ImageView
                        android:id="@+id/image_home"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerVertical="true"
                        android:layout_marginLeft="@dimen/_20sdp"
                        android:background="@drawable/home_sidebar_ic"
                        />
                </RelativeLayout>
                <RelativeLayout
                    android:id="@+id/about_fragment"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/_40sdp">
                    <View
                        android:layout_width="match_parent"
                        android:layout_height="@dimen/_1sdp"
                        android:background="#ffa500"
                        android:visibility="gone" />
                    <TextView
                        android:id="@+id/txt_about"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerInParent="true"
                        android:layout_marginLeft="@dimen/_10sdp"
                        android:layout_toRightOf="@+id/imgAbout"
                        android:text="About"
                        android:textColor="#6d6e71"
                        android:textSize="@dimen/_11sdp" />
                    <ImageView
                        android:id="@+id/imgAbout"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerVertical="true"
                        android:layout_marginLeft="@dimen/_20sdp"
                        android:background="@drawable/about_sidebar_f_ic" />
                </RelativeLayout>
                <RelativeLayout
                    android:id="@+id/help_fragment"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/_40sdp">
                    <View
                        android:layout_width="match_parent"
                        android:layout_height="@dimen/_1sdp"
                        android:background="#ffa500"
                        android:visibility="gone" />
                    <TextView
                        android:id="@+id/txtContactUs"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerInParent="true"
                        android:layout_marginLeft="@dimen/_10sdp"
                        android:layout_toRightOf="@+id/imgHelp"
                        android:text="@string/help"
                        android:textColor="#6d6e71"
                        android:textSize="@dimen/_11sdp" />
                    <ImageView
                        android:id="@+id/imgHelp"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerVertical="true"
                        android:layout_marginLeft="@dimen/_18sdp"
                        android:background="@drawable/help_sidebar_f_ic" />
                </RelativeLayout>
                <RelativeLayout
                    android:id="@+id/contactus_fragment"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/_40sdp">
                    <View
                        android:layout_width="match_parent"
                        android:layout_height="@dimen/_1sdp"
                        android:background="#ffa500"
                        android:visibility="gone" />
                    <TextView
                        android:id="@+id/txtContactus"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerInParent="true"
                        android:layout_marginLeft="@dimen/_10sdp"
                        android:layout_toRightOf="@+id/imgContactUs"
                        android:text="@string/contact_us"
                        android:textColor="#6d6e71"
                        android:textSize="@dimen/_11sdp" />
                    <ImageView
                        android:id="@+id/imgContactUs"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerVertical="true"
                        android:layout_marginLeft="@dimen/_18sdp"
                        android:background="@drawable/contact_sidebar_ic" />
                </RelativeLayout>
            </LinearLayout>
        </LinearLayout>
    </ScrollView>
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/footer_layout">
        <View
            android:layout_width="match_parent"
            android:layout_height="0.5dp"
            android:background="#ffa500" />
    </RelativeLayout>
    <LinearLayout
        android:id="@+id/footer_layout"
        android:layout_width="match_parent"
        android:layout_height="@dimen/_40sdp"
        android:layout_alignParentBottom="true"
        android:background="@color/white"
        android:orientation="horizontal"
        android:weightSum="3">
    </LinearLayout>
</RelativeLayout>