Home | History | Annotate | Download | only in layout
      1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      2     android:layout_width="match_parent"
      3     android:layout_height="match_parent"
      4     android:orientation="vertical"
      5     >
      6 
      7     <TextView android:id="@+id/current_setting"
      8         android:layout_width="wrap_content"
      9         android:layout_height="wrap_content"
     10         android:layout_gravity="left"
     11         android:layout_marginTop="30dp"
     12         android:layout_marginBottom="50dp"
     13         android:paddingLeft="8dp"
     14         android:paddingTop="4dp"
     15         android:textSize="20sp"
     16         android:textColor="#ffffffff"
     17         />
     18 
     19     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     20         android:layout_width="match_parent"
     21         android:layout_height="wrap_content"
     22         android:gravity="center"
     23         android:orientation="horizontal"
     24         >
     25         <Button android:id="@+id/fix"
     26             android:layout_width="wrap_content"
     27             android:layout_height="wrap_content"
     28             android:text="@string/fix"
     29             />
     30 
     31         <Button android:id="@+id/unfix"
     32             android:layout_width="wrap_content"
     33             android:layout_height="wrap_content"
     34             android:text="@string/unfix"
     35             />
     36     </LinearLayout>
     37 
     38     <Button android:id="@+id/test"
     39         android:layout_width="wrap_content"
     40         android:layout_height="wrap_content"
     41         android:layout_gravity="center"
     42         android:text="@string/test"
     43         />
     44 
     45 </LinearLayout>
     46 
     47