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"
|
2012-12-29 04:12:24 -07:00
|
|
|
a:id="@+id/button_bar" a:orientation="vertical" a:layout_gravity="bottom"
|
|
|
|
a:layout_width="fill_parent" a:layout_height="wrap_content"
|
|
|
|
a:background="@drawable/menubar_button_normal">
|
2012-02-26 15:25:13 -05:00
|
|
|
|
2012-12-29 04:12:24 -07:00
|
|
|
<LinearLayout a:orientation="horizontal" a:layout_width="fill_parent"
|
2013-01-07 00:18:41 -07:00
|
|
|
a:layout_height="48dp" a:gravity="center_horizontal" a:background="@drawable/menubar_button_normal">
|
2012-02-26 15:25:13 -05:00
|
|
|
|
2012-12-29 04:12:24 -07: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/ic_menu_home" />
|
2013-01-07 00:18:41 -07:00
|
|
|
<View a:layout_width="1dp" a:layout_height="fill_parent"
|
2012-12-29 04:12:24 -07:00
|
|
|
a:layout_marginBottom="5dp" a:layout_marginTop="8dp" a:layout_weight="0.01"
|
|
|
|
a:background="@drawable/bg_separator" />
|
|
|
|
|
|
|
|
<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/ic_menu_browse" />
|
2013-01-07 00:18:41 -07:00
|
|
|
<View a:layout_width="1dp" a:layout_height="fill_parent"
|
2012-12-29 04:12:24 -07:00
|
|
|
a:layout_marginBottom="5dp" a:layout_marginTop="8dp" a:layout_weight="0.01"
|
|
|
|
a:background="@drawable/bg_separator" />
|
|
|
|
|
|
|
|
<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/ic_menu_search" />
|
2013-01-07 00:18:41 -07:00
|
|
|
<View a:layout_width="1dp" a:layout_height="fill_parent"
|
2012-12-29 04:12:24 -07:00
|
|
|
a:layout_marginBottom="5dp" a:layout_marginTop="8dp" a:layout_weight="0.01"
|
|
|
|
a:background="@drawable/bg_separator" />
|
|
|
|
|
|
|
|
<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/ic_menu_playlists" />
|
2013-01-07 00:18:41 -07:00
|
|
|
<View a:layout_width="1dp" a:layout_height="fill_parent"
|
2012-12-29 04:12:24 -07:00
|
|
|
a:layout_marginBottom="5dp" a:layout_marginTop="8dp" a:layout_weight="0.01"
|
|
|
|
a:background="@drawable/bg_separator" />
|
|
|
|
|
|
|
|
<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/ic_menu_play_all" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2012-02-26 15:25:13 -05:00
|
|
|
</LinearLayout>
|
|
|
|
|