<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:id="@+id/event_list_container"
    android:layout_height="match_parent"
    android:background="@color/sf_overlay">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="260dp"
        android:id="@+id/event_list_inner_container"
        android:layout_alignParentBottom="true">

        <ListView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:id="@+id/event_list"
            android:divider="@null"
            android:layout_marginTop="20dp"/>

        <ImageView
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:id="@+id/imageView_close_list"
            android:layout_alignParentTop="false"
            android:layout_marginRight="20dp"
            android:src="@drawable/sf_close_x_circle"
            android:layout_alignParentRight="true"
            android:layout_above="@+id/event_list"
            android:layout_marginBottom="-40dp"/>
    </RelativeLayout>

</RelativeLayout>