1st version that works

This commit is contained in:
2022-03-14 11:53:00 +02:00
parent ee2884b2ff
commit 3806d2c80d
617 changed files with 17293 additions and 4470 deletions

View 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>