Home | History | Annotate | Download | only in layout
      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="wrap_content"
      4 	android:orientation="vertical" android:layout_weight="1">
      5 	<include layout="@layout/servo_tablet" android:id="@+id/servo_tablet"
      6 		android:layout_width="match_parent" android:layout_height="wrap_content"
      7 		android:layout_weight="0" android:layout_gravity="center_vertical" />
      8 	<include layout="@layout/relay_tablet" android:layout_width="fill_parent" android:layout_weight="0" 
      9 		android:layout_height="wrap_content" />
     10 	<include layout="@layout/leds_tablet" android:layout_width="match_parent" android:layout_weight="1" 
     11 		android:layout_height="wrap_content" />
     12 </LinearLayout>
     13 
     14