70 lines
2.7 KiB
XML
70 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
<Button
|
|
android:id="@+id/buttonLive"
|
|
android:layout_height="54dp"
|
|
android:layout_width="fill_parent"
|
|
android:text="Live"
|
|
android:drawableTop="@drawable/ic_tab_live_selected"
|
|
android:background="@layout/style_bluebutton"
|
|
style="@style/ButtonMenu" />
|
|
<Button
|
|
android:id="@+id/buttonHistory"
|
|
android:layout_height="54dp"
|
|
android:layout_width="wrap_content"
|
|
android:text="History"
|
|
android:drawableTop="@drawable/ic_tab_history_selected"
|
|
android:background="@layout/style_bluebutton"
|
|
style="@style/ButtonMenu" />
|
|
<Button
|
|
android:id="@+id/buttonText"
|
|
android:layout_height="54dp"
|
|
android:layout_width="fill_parent"
|
|
android:text="Text"
|
|
android:drawableTop="@drawable/ic_tab_text_selected"
|
|
android:background="@layout/style_bluebutton"
|
|
style="@style/ButtonMenu" />
|
|
<Button
|
|
android:id="@+id/buttonRadio"
|
|
android:layout_height="54dp"
|
|
android:layout_width="fill_parent"
|
|
android:text="Radio"
|
|
android:drawableTop="@drawable/ic_tab_radio_selected"
|
|
android:background="@layout/style_bluebutton"
|
|
style="@style/ButtonMenu" />
|
|
<Button
|
|
android:id="@+id/buttonRecording"
|
|
android:layout_height="54dp"
|
|
android:layout_width="fill_parent"
|
|
android:text="Rec."
|
|
android:drawableTop="@drawable/ic_tab_recording_selected"
|
|
android:background="@layout/style_bluebutton"
|
|
style="@style/ButtonMenu" />
|
|
<Button
|
|
android:id="@+id/buttonAlarms"
|
|
android:layout_height="54dp"
|
|
android:layout_width="fill_parent"
|
|
android:text="Alarms"
|
|
android:drawableTop="@drawable/ic_tab_alarms_selected"
|
|
android:background="@layout/style_bluebutton"
|
|
style="@style/ButtonMenu" />
|
|
<Button
|
|
android:id="@+id/buttonSetup"
|
|
android:layout_height="54dp"
|
|
android:layout_width="fill_parent"
|
|
android:text="Setup"
|
|
android:drawableTop="@drawable/ic_tab_settings_selected"
|
|
android:background="@layout/style_bluebutton"
|
|
style="@style/ButtonMenu" />
|
|
<Button
|
|
android:id="@+id/buttonLogo"
|
|
android:layout_height="54dp"
|
|
android:layout_width="fill_parent"
|
|
android:text="About"
|
|
android:drawableTop="@drawable/ic_tab_logo_selected"
|
|
android:background="@layout/style_bluebutton"
|
|
style="@style/ButtonMenu" />
|
|
</LinearLayout> |