<?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="match_parent" >

    <LinearLayout
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:padding="6dp" >

        <ImageView
            android:id="@+id/imageViewImport"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.25"
            android:background="@drawable/border"
            android:contentDescription="@string/title_import"
            android:padding="6dp"
            android:src="@drawable/icon_import" >
        </ImageView>

        <ImageView
            android:id="@+id/imageViewExport"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.25"
            android:background="@drawable/border"
            android:contentDescription="@string/title_export"
            android:padding="6dp"
            android:src="@drawable/icon_export" >
        </ImageView>

        <ImageView
            android:id="@+id/imageViewClear"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.25"
            android:background="@drawable/border"
            android:contentDescription="@string/title_clear"
            android:padding="6dp"
            android:src="@drawable/icon_clear" >
        </ImageView>

        <ImageView
            android:id="@+id/imageViewDelete"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.25"
            android:background="@drawable/border"
            android:contentDescription="@string/title_delete"
            android:padding="6dp"
            android:src="@drawable/icon_delete" >
        </ImageView>
    </LinearLayout>

    <ImageView
        android:id="@+id/divider"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_above="@id/footer"
        android:contentDescription="@string/image_dummy"
        android:scaleType="fitXY"
        android:src="@android:drawable/divider_horizontal_bright" />

    <ListView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@id/divider"
        android:scrollbars="none" >
    </ListView>

    <TextView
        android:id="@+id/empty"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@id/divider"
        android:gravity="center"
        android:text="@string/msg_nodata_main" />

</RelativeLayout>