<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="?android:attr/spinnerDropDownItemStyle"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="@dimen/dh_horizontal_margin">
    
    <RelativeLayout
        android:id="@+id/dh_signin_history_layer"
        android:layout_gravity="center"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dh_40dp">

        <ImageButton
            android:id="@+id/dh_signin_history_selector"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="@color/dh_transparent"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:paddingLeft="@dimen/dh_12dp"
            android:paddingRight="@dimen/dh_12dp"
            android:src="@drawable/dh_clear"/>

        <TextView
            android:id="@+id/dh_signin_history_name"
            android:layout_toLeftOf="@id/dh_signin_history_selector"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_vertical"
            android:drawableLeft="@drawable/dh_head"
            android:drawablePadding="@dimen/dh_12dp"
            android:ellipsize="marquee"
            android:maxLines="1"
            android:textAlignment="inherit"
            android:textColor="@color/dh_txt_black"
            android:textSize="@dimen/dh_txt_tiny"/>
    </RelativeLayout>

    <Button
        android:visibility="gone"
        android:id="@+id/dh_signin_other"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dh_btn_thick"
        android:background="@color/dh_transparent"
        android:text="@string/dh_signin_other"
        android:textColor="@color/dh_txt_gray_light"
        android:textSize="@dimen/dh_txt_tiny" />

    <Button
        android:visibility="gone"
        android:id="@+id/dh_signin_history_clear"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dh_btn_thick"
        android:background="@color/dh_transparent"
        android:text="@string/dh_signin_clear"
        android:textColor="@color/dh_txt_gray_light"
        android:textSize="@dimen/dh_txt_tiny" />
    
</FrameLayout>