aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/res/layout/button_bar.xml
diff options
context:
space:
mode:
authorKurt Hardin <kurthardin.dev@gmail.com>2012-09-25 11:48:55 -0700
committerKurt Hardin <kurthardin.dev@gmail.com>2012-09-25 11:48:55 -0700
commit2be1e2632966490e9d1b0cde7bb51f1951710794 (patch)
tree85a7684f8d53435fd584c5c6e6e00d49f0e08907 /subsonic-android/res/layout/button_bar.xml
parent4573e156e0026348e7cdaaa1747d633b5fef3ef7 (diff)
parentd2ef30d252b8af7dd955f1d6c21d2f8f7475ec0c (diff)
downloaddsub-2be1e2632966490e9d1b0cde7bb51f1951710794.tar.gz
dsub-2be1e2632966490e9d1b0cde7bb51f1951710794.tar.bz2
dsub-2be1e2632966490e9d1b0cde7bb51f1951710794.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'subsonic-android/res/layout/button_bar.xml')
-rw-r--r--subsonic-android/res/layout/button_bar.xml23
1 files changed, 9 insertions, 14 deletions
diff --git a/subsonic-android/res/layout/button_bar.xml b/subsonic-android/res/layout/button_bar.xml
index 1d576775..52c78ba1 100644
--- a/subsonic-android/res/layout/button_bar.xml
+++ b/subsonic-android/res/layout/button_bar.xml
@@ -6,47 +6,42 @@
android:layout_width="fill_parent"
android:layout_height="wrap_content">
- <View
- android:layout_width="fill_parent"
- android:layout_height="1px"
- android:background="@color/dividerColor"/>
-
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
- android:layout_height="wrap_content"
+ android:layout_height="48dp"
android:gravity="center_horizontal">
<ImageButton android:id="@+id/button_bar_home"
android:src="@drawable/menu_home"
android:contentDescription="@string/button_bar.home"
android:background="@drawable/menubar_button"
+ android:layout_height="match_parent"
android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="wrap_content"/>
+ android:layout_width="0dp"/>
<ImageButton android:id="@+id/button_bar_music"
android:src="@drawable/menu_browse"
android:contentDescription="@string/button_bar.browse"
android:background="@drawable/menubar_button"
+ android:layout_height="match_parent"
android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="wrap_content"/>
+ android:layout_width="0dp"/>
<ImageButton android:id="@+id/button_bar_playlists"
android:src="@drawable/menu_playlists"
android:contentDescription="@string/button_bar.playlists"
android:background="@drawable/menubar_button"
+ android:layout_height="match_parent"
android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="wrap_content"/>
+ android:layout_width="0dp"/>
<ImageButton android:id="@+id/button_bar_now_playing"
android:src="@drawable/menu_now_playing"
android:contentDescription="@string/button_bar.now_playing"
android:background="@drawable/menubar_button"
+ android:layout_height="match_parent"
android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="wrap_content"/>
+ android:layout_width="0dp"/>
</LinearLayout>
</LinearLayout>