<?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="@dimen/dh_40dp"
    android:background="@color/dh_white">
    
    <ImageButton
        android:id="@+id/dh_back"
        android:visibility="visible"
        android:layout_alignParentLeft="true"
        android:paddingRight="@dimen/dh_horizontal_margin"
        android:layout_centerVertical="true"
        android:src="@drawable/dh_leftarrow"
        android:background="@color/dh_transparent"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" />

    <ImageButton
        android:id="@+id/dh_close"
        android:visibility="visible"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:paddingLeft="@dimen/dh_horizontal_margin"
        android:src="@drawable/dh_close"
        android:background="@color/dh_transparent"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" />
    
    <ImageView
        android:id="@+id/dh_logo"
        android:visibility="visible"
        android:layout_toRightOf="@id/dh_back"
        android:layout_toLeftOf="@id/dh_close"
        android:layout_marginTop="5dp"
        android:layout_marginBottom="5dp"
        android:layout_centerInParent="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/dh_logo"/>
    
</RelativeLayout>