<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/dh_pay_list_container"
    android:paddingTop="40dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/dh_pay_cancel_btn"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:background="@color/dh_white"
        android:layout_alignParentBottom="true"
        android:gravity="center"
        android:textColor="#666666"
        android:text="@string/dh_cancel" />

    <View
        android:id="@+id/dh_pay_seperator"
        android:layout_width="match_parent"
        android:layout_height="20dp"
        android:layout_above="@id/dh_pay_cancel_btn"
        android:background="#f7f7f7" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/dh_pay_seperator"
        android:orientation="vertical">

        <TextView
            android:id="@+id/dh_pay_list_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#f7f7f7"
            android:paddingBottom="5dp"
            android:paddingLeft="15dp"
            android:paddingRight="15dp"
            android:paddingTop="5dp"
            android:textColor="#666666"
            android:text="@string/dh_pay_list_title" />

        <ListView
            android:id="@+id/dh_pay_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#f7f7f7"
            android:divider="#f7f7f7"
            android:dividerHeight="1dp"
            android:focusable="true"
            android:minHeight="40dp" />
    </LinearLayout>

</RelativeLayout>