91 lines
3.5 KiB
XML
91 lines
3.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/menu_main"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical" >
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_navigation"
|
||
|
style="@style/MenuDrawer.Widget.Category"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/menu.navigation" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_home"
|
||
|
style="@style/MenuDrawer.Widget.Title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableLeft="@drawable/ic_menu_home"
|
||
|
android:text="@string/button_bar.home" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_browse"
|
||
|
style="@style/MenuDrawer.Widget.Title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableLeft="@drawable/ic_menu_browse"
|
||
|
android:text="@string/button_bar.browse" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_search"
|
||
|
style="@style/MenuDrawer.Widget.Title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableLeft="@drawable/ic_menu_search"
|
||
|
android:text="@string/button_bar.search" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_playlists"
|
||
|
style="@style/MenuDrawer.Widget.Title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableLeft="@drawable/ic_menu_playlists"
|
||
|
android:text="@string/button_bar.playlists" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_now_playing"
|
||
|
style="@style/MenuDrawer.Widget.Title"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableLeft="@drawable/ic_menu_play_all"
|
||
|
android:text="@string/button_bar.now_playing" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_common"
|
||
|
style="@style/MenuDrawer.Widget.Category"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/menu.common" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_settings"
|
||
|
style="@style/MenuDrawer.Widget.Title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableLeft="@drawable/ic_menu_settings"
|
||
|
android:text="@string/menu.settings" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_about"
|
||
|
style="@style/MenuDrawer.Widget.Title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableLeft="@drawable/ic_menu_about"
|
||
|
android:text="@string/menu.about" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/menu_exit"
|
||
|
style="@style/MenuDrawer.Widget.Title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:drawableLeft="@drawable/ic_menu_exit"
|
||
|
android:text="@string/menu.exit" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
</ScrollView>
|