<!--
  Copyright (C) 2013 Aurélien Chabot <aurelien@chabot.fr>

  This file is part of DroidUPNP.

  DroidUPNP is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  DroidUPNP is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with DroidUPNP.  If not, see <http://www.gnu.org/licenses/>.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:tools="http://schemas.android.com/tools"
	android:id="@+id/drawer_layout"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:orientation="vertical"
	tools:context="org.droidupnp.Main">

	<RelativeLayout
		android:layout_width="match_parent"
		android:layout_height="?actionBarSize"
		android:background="#000000">

		<ImageView
			android:id="@+id/imvBack"
			android:layout_width="?actionBarSize"
			android:layout_height="?actionBarSize"
			android:padding="16dp"
			android:src="@drawable/ic_back_white" />

		<TextView
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:layout_centerInParent="true"
			android:text="@string/song_list_title"
			android:textColor="@android:color/white"
			android:textSize="20sp" />
	</RelativeLayout>

	<fragment
		android:id="@+id/content"
		android:name="org.droidupnp.view.Content"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		tools:layout="@layout/content" />

	<!--<fragment android:id="@+id/navigation_drawer"
        android:layout_width="@dimen/navigation_drawer_width"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:name="org.droidupnp.DrawerFragment"
        tools:layout="@layout/device_fragment"/>-->

</LinearLayout>
