<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:background="#000000">

    <include layout="@layout/sf_nav_frame"
             android:id="@+id/navMenuContainer"/>

    <ListView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/mainNavListView"
        android:layout_gravity="left|top"
        android:clickable="true"
        android:divider="#00ffffff"
        android:smoothScrollbar="false"
        android:background="@color/sf_background_menu"
        android:listSelector="#00ffffff"
        android:cacheColorHint="#00ffffff"
        android:visibility="visible"
        android:paddingTop="10dp"
        android:paddingLeft="6dp"
        android:layout_below="@+id/navMenuContainer"/>

    <include layout="@layout/sf_refresh_frame"
             android:id="@+id/refreshContainer"/>

    <GridView
        android:id="@+id/slide_right"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/navMenuContainer"
        android:background="@color/sf_background_default"
        android:numColumns="auto_fit"
        android:columnWidth="160dp"
        android:animateLayoutChanges="true"
        android:clickable="true"
        android:layout_above="@+id/audio_control_footer"/>

    <ProgressBar
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/sf_loading_spinner"
        android:layout_below="@+id/navMenuContainer"
        android:layout_centerInParent="true"
        android:layout_marginTop="40dp"
        android:visibility="gone"/>

    <include layout="@layout/sf_audio_controls_footer"
             android:id="@+id/audio_control_footer"
             android:layout_width="match_parent"
             android:layout_height="0dp"
             android:layout_alignParentBottom="true"/>

</RelativeLayout>