diff options
author | Scott Jackson <daneren2005@gmail.com> | 2012-10-29 21:17:24 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2012-10-29 21:17:24 -0700 |
commit | 49ec9441ae2024fe5a48dbec7dcdfdf181604b43 (patch) | |
tree | bb3cf3dbd607179bb1316847bd014e2fb3832900 /subsonic-android/res/layout | |
parent | a8d2252d922d6e40dd252025f56ad1fdd2d4d3b8 (diff) | |
download | dsub-49ec9441ae2024fe5a48dbec7dcdfdf181604b43.tar.gz dsub-49ec9441ae2024fe5a48dbec7dcdfdf181604b43.tar.bz2 dsub-49ec9441ae2024fe5a48dbec7dcdfdf181604b43.zip |
More work on updating now playing tab + general theme
Diffstat (limited to 'subsonic-android/res/layout')
-rw-r--r-- | subsonic-android/res/layout/download_media_buttons.xml | 61 | ||||
-rw-r--r-- | subsonic-android/res/layout/overflow_menu.xml | 18 |
2 files changed, 61 insertions, 18 deletions
diff --git a/subsonic-android/res/layout/download_media_buttons.xml b/subsonic-android/res/layout/download_media_buttons.xml new file mode 100644 index 00000000..f0ceabcf --- /dev/null +++ b/subsonic-android/res/layout/download_media_buttons.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="utf-8"?> + +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="horizontal" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:background="@android:color/transparent"> + + <ImageButton + style="@style/PlaybackControl.Small" + android:id="@+id/download_shuffle" + android:src="@drawable/action_shuffle" + android:layout_alignParentLeft="true" + android:layout_centerVertical="true" + /> + + <ImageButton + style="@style/PlaybackControl" + android:id="@+id/download_previous" + android:src="@drawable/media_backward" + android:layout_toLeftOf="@+id/download_pause" + android:layout_centerVertical="true" + /> + + <ImageButton + style="@style/PlaybackControl" + android:id="@+id/download_pause" + android:src="@drawable/media_pause" + android:layout_centerInParent="true" + /> + + <ImageButton + style="@style/PlaybackControl" + android:id="@+id/download_stop" + android:src="@drawable/media_stop" + android:layout_centerInParent="true" + /> + + <ImageButton + style="@style/PlaybackControl" + android:id="@+id/download_start" + android:src="@drawable/media_start" + android:layout_centerInParent="true" + /> + + <ImageButton + style="@style/PlaybackControl" + android:id="@+id/download_next" + android:src="@drawable/media_forward" + android:layout_toRightOf="@+id/download_start" + android:layout_centerVertical="true" + /> + + <ImageButton + style="@style/PlaybackControl.Small" + android:id="@+id/download_toggle_list" + android:src="@drawable/action_toggle_list" + android:layout_alignParentRight="true" + android:layout_centerVertical="true" + /> +</RelativeLayout>
\ No newline at end of file diff --git a/subsonic-android/res/layout/overflow_menu.xml b/subsonic-android/res/layout/overflow_menu.xml deleted file mode 100644 index 4881324f..00000000 --- a/subsonic-android/res/layout/overflow_menu.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/overflow_menu" - android:orientation="vertical" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:background="@drawable/menubar_button_disabled"> - - <ImageButton - android:id="@+id/overflow_button_1" - android:src="@drawable/action_shuffle" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:scaleType="center" - android:background="@drawable/actionbar_button" - /> - -</linearlayout>
\ No newline at end of file |