1
0
mirror of https://github.com/ultrasonic/ultrasonic synced 2025-02-03 02:27:31 +01:00

98 lines
3.4 KiB
XML
Raw Normal View History

2012-02-26 15:25:13 -05:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/button_bar"
a:orientation="vertical"
a:layout_gravity="bottom"
a:layout_width="fill_parent"
2012-02-26 15:29:05 -05:00
a:layout_height="wrap_content" a:background="@color/black">
2012-02-26 15:25:13 -05:00
<View
a:layout_width="fill_parent"
a:layout_height="1px"
a:background="@color/dividerColor"/>
<LinearLayout a:orientation="horizontal"
a:layout_width="fill_parent"
2012-02-26 15:29:05 -05:00
a:layout_height="42dip"
2012-02-26 15:25:13 -05:00
a:gravity="center_horizontal">
2012-02-26 15:29:05 -05:00
<ImageButton
a:id="@+id/button_bar_home"
a:layout_width="0dp"
a:layout_height="match_parent"
a:layout_weight="1"
a:background="@drawable/buttonbar_selector"
a:contentDescription="@string/button_bar.home"
a:src="@drawable/menu_home" />
<View
a:layout_width="1px"
a:layout_height="fill_parent"
a:layout_marginBottom="5dp"
a:layout_marginTop="8dp"
a:layout_weight="0.01"
a:background="@color/dividerColor" />
<ImageButton
a:id="@+id/button_bar_music"
a:layout_width="0dp"
a:layout_height="match_parent"
a:layout_weight="1"
a:background="@drawable/buttonbar_selector"
a:contentDescription="@string/button_bar.browse"
a:src="@drawable/menu_browse" />
<View
a:layout_width="1px"
a:layout_height="fill_parent"
a:layout_marginBottom="5dp"
a:layout_marginTop="8dp"
a:layout_weight="0.01"
a:background="@color/dividerColor" />
<ImageButton
a:id="@+id/button_bar_search"
a:layout_width="0dp"
a:layout_height="match_parent"
a:layout_weight="1"
a:background="@drawable/buttonbar_selector"
a:contentDescription="@string/button_bar.search"
a:src="@drawable/menu_search" />
<View
a:layout_width="1px"
a:layout_height="fill_parent"
a:layout_marginBottom="5dp"
a:layout_marginTop="8dp"
a:layout_weight="0.01"
a:background="@color/dividerColor" />
<ImageButton
a:id="@+id/button_bar_playlists"
a:layout_width="0dp"
a:layout_height="match_parent"
a:layout_weight="1"
a:background="@drawable/buttonbar_selector"
a:contentDescription="@string/button_bar.playlists"
a:src="@drawable/menu_playlists" />
<View
a:layout_width="1px"
a:layout_height="fill_parent"
a:layout_marginBottom="5dp"
a:layout_marginTop="8dp"
a:background="@color/dividerColor" />
<ImageButton
a:id="@+id/button_bar_now_playing"
a:layout_width="0dp"
a:layout_height="match_parent"
a:layout_weight="1"
a:background="@drawable/buttonbar_selector"
a:contentDescription="@string/button_bar.now_playing"
a:src="@drawable/menu_now_playing" />
2012-02-26 15:25:13 -05:00
</LinearLayout>
</LinearLayout>