1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3	android:layout_width="match_parent" android:layout_height="match_parent"
4	android:orientation="vertical" android:weightSum="2">
5	<include layout="@layout/templightcontainer" android:id="@+id/TempLightContainer_ref"
6		android:layout_width="match_parent" android:layout_height="wrap_content"
7		android:layout_weight="1" />
8	<include layout="@layout/buttoncontainer" android:id="@+id/ButtonContainer_ref"
9		android:layout_width="match_parent" android:layout_height="wrap_content"
10		android:layout_weight="1" />
11	<include layout="@layout/joycontainer" android:id="@+id/JoyContainer_ref"
12		android:layout_width="match_parent" android:layout_height="wrap_content"
13		android:layout_weight="0" />
14</LinearLayout>
15
16