Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      4               android:orientation="vertical"
      5               android:id="@+id/container"
      6               android:layout_width="match_parent"
      7               android:layout_height="match_parent">
      8 
      9     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     10                   android:orientation="horizontal"
     11                   android:layout_width="match_parent"
     12                   android:layout_height="wrap_content">
     13 
     14         <CheckBox
     15                 android:id="@+id/enableAnimations"
     16                 android:checked="true"
     17                 android:text="@string/enableAnimations"
     18                 android:layout_width="wrap_content"
     19                 android:layout_height="wrap_content"/>
     20 
     21         <CheckBox
     22                 android:id="@+id/enablePredictiveAnimations"
     23                 android:checked="true"
     24                 android:text="@string/enablePredictiveAnimations"
     25                 android:layout_width="wrap_content"
     26                 android:layout_height="wrap_content"/>
     27 
     28         <CheckBox
     29                 android:id="@+id/enableChangeAnimations"
     30                 android:checked="false"
     31                 android:text="@string/enableChangeAnimations"
     32                 android:layout_width="wrap_content"
     33                 android:layout_height="wrap_content"/>
     34 
     35     </LinearLayout>
     36 
     37     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     38                   android:orientation="horizontal"
     39                   android:layout_width="match_parent"
     40                   android:layout_height="wrap_content">
     41 
     42         <Button
     43                 android:id="@+id/deleteButton"
     44                 android:layout_weight=".5"
     45                 android:layout_width="0dip"
     46                 android:layout_height="wrap_content"
     47                 android:onClick="deleteSelectedItems"
     48                 android:text="@string/delete_item"/>
     49 
     50         <Button
     51                 android:layout_weight=".5"
     52                 android:layout_width="0dip"
     53                 android:layout_height="wrap_content"
     54                 android:onClick="addItem"
     55                 android:text="@string/add_item"/>
     56 
     57         <Button
     58                 android:layout_weight=".5"
     59                 android:layout_width="0dip"
     60                 android:layout_height="wrap_content"
     61                 android:onClick="addDeleteItem"
     62                 android:text="@string/add_delete_item"/>
     63 
     64         <Button
     65                 android:layout_weight=".5"
     66                 android:layout_width="0dip"
     67                 android:layout_height="wrap_content"
     68                 android:onClick="deleteAddItem"
     69                 android:text="@string/delete_add_item"/>
     70 
     71         <Button
     72                 android:layout_weight=".5"
     73                 android:layout_width="0dip"
     74                 android:layout_height="wrap_content"
     75                 android:onClick="d1a2d3"
     76                 android:text="@string/d1a2d3"/>
     77 
     78     </LinearLayout>
     79 
     80 </LinearLayout>