1st version that works
This commit is contained in:
65
safeDispatch/src/main/res/layout/menu.xml
Normal file
65
safeDispatch/src/main/res/layout/menu.xml
Normal file
@ -0,0 +1,65 @@
|
||||
<?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="fill_parent"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/buttonLive"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/ic_tab_live_selected"
|
||||
android:layout_weight="1"
|
||||
style="?menu"/>
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/buttonHistory"
|
||||
style="?menu"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/ic_tab_history_selected" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/buttonText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/ic_tab_text_selected"
|
||||
style="?menu"/>
|
||||
<ImageButton
|
||||
android:id="@+id/buttonRadio"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/ic_tab_radio_selected"
|
||||
style="?menu"/>
|
||||
<ImageButton
|
||||
android:id="@+id/buttonRecording"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/ic_tab_recording_selected"
|
||||
style="?menu"/>
|
||||
<ImageButton
|
||||
android:id="@+id/buttonAlarms"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/ic_tab_alarms_selected"
|
||||
style="?menu"/>
|
||||
<ImageButton
|
||||
android:id="@+id/buttonSetup"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/ic_tab_settings_selected"
|
||||
style="?menu"/>
|
||||
<ImageButton
|
||||
android:id="@+id/buttonLogo"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/ic_tab_logo_selected"
|
||||
style="?menu"/>
|
||||
</LinearLayout>
|
Reference in New Issue
Block a user