ultrasonic-app-subsonic-and.../res/layout/menu_main.xml

115 lines
4.3 KiB
XML
Raw Normal View History

2013-04-27 11:42:16 +02:00
<?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"
2013-04-28 01:01:34 +02:00
android:drawableLeft="?attr/home"
2013-04-27 11:42:16 +02:00
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"
2013-04-28 01:01:34 +02:00
android:drawableLeft="?attr/browse"
2013-04-27 11:42:16 +02:00
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"
2013-04-28 01:01:34 +02:00
android:drawableLeft="?attr/search"
2013-04-27 11:42:16 +02:00
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"
2013-04-28 01:01:34 +02:00
android:drawableLeft="?attr/playlists"
2013-04-27 11:42:16 +02:00
android:text="@string/button_bar.playlists" />
<TextView
android:id="@+id/menu_shares"
style="@style/MenuDrawer.Widget.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="?attr/share"
android:text="@string/button_bar.shares" />
<TextView
android:id="@+id/menu_bookmarks"
style="@style/MenuDrawer.Widget.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="?attr/bookmark"
android:text="@string/button_bar.bookmarks" />
2013-05-22 07:47:40 +02:00
<TextView
android:id="@+id/menu_chat"
style="@style/MenuDrawer.Widget.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="?attr/chat"
android:text="@string/button_bar.chat" />
2013-04-27 11:42:16 +02:00
<TextView
android:id="@+id/menu_now_playing"
style="@style/MenuDrawer.Widget.Title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2013-04-28 01:01:34 +02:00
android:drawableLeft="?attr/media_play"
2013-04-27 11:42:16 +02:00
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"
2013-04-28 01:01:34 +02:00
android:drawableLeft="?attr/settings"
2013-04-27 11:42:16 +02:00
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"
2013-04-28 01:01:34 +02:00
android:drawableLeft="?attr/about"
2013-04-27 11:42:16 +02:00
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"
2013-04-28 01:01:34 +02:00
android:drawableLeft="?attr/exit"
2013-04-27 11:42:16 +02:00
android:text="@string/menu.exit" />
</LinearLayout>
</ScrollView>