I think your looking for a layout like this.Change the orientation and colors you need and add the elements you need in each layout.You can see the original view after run it in emulator or device only,So after creating this run the layout.
Layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:orientation="vertical"
android:weightSum="3"
android:layout_margin="50dp"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@drawable/rectangle_topcorner">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Email:"
android:layout_gravity="center"
android:textColor="@android:color/white"
android:layout_marginLeft="10dip"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#002233">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Name:"
android:textColor="@android:color/white"
android:layout_gravity="center"
android:layout_marginLeft="10dip"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@drawable/rectangle_bottemcorner">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Username:"
android:textColor="@android:color/white"
android:layout_gravity="center"
android:layout_marginLeft="10dip"
/>
</LinearLayout>
</LinearLayout>
Drawables:
rectangle_bottemcorner.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:id="@+id/background_shape"
>
<corners android:bottomLeftRadius="20dp"
android:bottomRightRadius="20dp"/>
<solid android:color="#005577"/>
</shape>
rectangle_topcorner.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:id="@+id/background_shape"
>
<corners android:topLeftRadius="20dp"
android:topRightRadius="20dp"
/>
<solid android:color="#005577"/>
</shape>