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" android:layout_width="match_parent"
      5     android:layout_height="match_parent">
      6 
      7     <TextView
      8         android:layout_width="match_parent"
      9         android:layout_height="wrap_content"
     10         android:text="@string/js_test_description"
     11         android:layout_margin="@dimen/js_padding"/>
     12     <TextView
     13         android:layout_width="match_parent"
     14         android:layout_height="wrap_content"
     15         android:text="@string/js_idle_description_1"
     16         android:layout_margin="@dimen/js_padding"
     17         android:textStyle="bold"/>
     18 
     19     <Button
     20         android:id="@+id/js_idle_start_test_button"
     21         android:layout_width="wrap_content"
     22         android:layout_height="wrap_content"
     23         android:layout_gravity="center"
     24         android:text="@string/js_start_test_text"
     25         android:onClick="startTest"
     26         android:enabled="false"/>
     27 
     28     <LinearLayout
     29         android:layout_width="wrap_content"
     30         android:layout_height="wrap_content"
     31         android:layout_marginTop="@dimen/js_padding"
     32         android:layout_marginBottom="@dimen/js_padding">
     33         <ImageView
     34             android:id="@+id/idle_off_test_image"
     35             android:layout_width="wrap_content"
     36             android:layout_height="wrap_content"
     37             android:src="@drawable/fs_indeterminate"
     38             android:layout_marginRight="@dimen/js_padding"/>
     39         <TextView
     40             android:layout_width="wrap_content"
     41             android:layout_height="wrap_content"
     42             android:text="@string/js_idle_item_idle_off"
     43             android:textSize="16dp"/>
     44     </LinearLayout>
     45     <LinearLayout
     46         android:layout_width="wrap_content"
     47         android:layout_height="wrap_content"
     48         android:layout_marginTop="@dimen/js_padding"
     49         android:layout_marginBottom="@dimen/js_padding">
     50         <ImageView
     51             android:id="@+id/idle_on_test_image"
     52             android:layout_width="wrap_content"
     53             android:layout_height="wrap_content"
     54             android:src="@drawable/fs_indeterminate"
     55             android:layout_marginRight="@dimen/js_padding"/>
     56         <TextView
     57             android:layout_width="wrap_content"
     58             android:layout_height="wrap_content"
     59             android:text="@string/js_idle_item_idle_on"
     60             android:textSize="16dp"/>
     61     </LinearLayout>
     62     <include layout="@layout/pass_fail_buttons" />
     63 </LinearLayout>