<?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:layout_height="match_parent">

    <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"/>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/slide_right"
        android:layout_below="@+id/navMenuContainer"
        android:background="@color/sf_background_default"
        android:clickable="true">

        <include
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            layout="@layout/sf_gamut_item"
            android:id="@+id/title"/>

        <include
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            layout="@layout/sf_audio_controls_seekbar"
            android:id="@+id/play_controls"
            android:layout_below="@+id/title"/>

        <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/listView"
            android:layout_below="@+id/play_controls"
            android:background="@color/sf_background_default"/>
    </RelativeLayout>

</RelativeLayout>