1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="horizontal" android:layout_width="match_parent" 4 android:layout_height="match_parent" android:paddingLeft="20dip" 5 android:paddingBottom="80dip" android:layout_weight="1" android:background="@drawable/background_holo_dark"> 6 <include layout="@layout/inputcontainer" android:id="@+id/inputContainer" 7 android:layout_width="400dip" android:layout_height="match_parent" 8 android:layout_weight="0" android:layout_marginRight = "50dip"/> 9 <include layout="@layout/output_tablet" android:id="@+id/outputContainer" 10 android:layout_width="wrap_content" android:layout_height="wrap_content" 11 android:layout_weight="1" /> 12 </LinearLayout> 13