1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:fitsSystemWindows="true"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:orientation="vertical">
7    <ScrollView
8        android:layout_width="match_parent"
9        android:layout_height="match_parent">
10        <LinearLayout
11            android:orientation="vertical"
12            android:layout_width="match_parent"
13            android:layout_height="match_parent">
14            <TextView
15                android:layout_width="match_parent"
16                android:layout_height="wrap_content"
17                android:text="@string/js_test_description"
18                android:layout_margin="@dimen/js_padding"/>
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            <TextView
28                android:id="@+id/js_idle_continue_instruction_view"
29                android:layout_width="match_parent"
30                android:layout_height="wrap_content"
31                android:text="@string/js_idle_continue_instruction"
32                android:layout_margin="@dimen/js_padding"
33                android:textStyle="bold"
34                android:visibility="gone"/>
35
36            <LinearLayout
37                android:layout_width="wrap_content"
38                android:layout_height="wrap_content"
39                android:layout_marginTop="@dimen/js_padding"
40                android:layout_marginBottom="@dimen/js_padding">
41                <ImageView
42                    android:id="@+id/idle_off_test_image"
43                    android:layout_width="wrap_content"
44                    android:layout_height="wrap_content"
45                    android:src="@drawable/fs_indeterminate"
46                    android:layout_marginRight="@dimen/js_padding"/>
47                <TextView
48                    android:layout_width="wrap_content"
49                    android:layout_height="wrap_content"
50                    android:text="@string/js_idle_item_idle_off"
51                    android:textSize="16dp"/>
52            </LinearLayout>
53            <LinearLayout
54                android:layout_width="wrap_content"
55                android:layout_height="wrap_content"
56                android:layout_marginTop="@dimen/js_padding"
57                android:layout_marginBottom="@dimen/js_padding">
58                <ImageView
59                    android:id="@+id/idle_on_test_image"
60                    android:layout_width="wrap_content"
61                    android:layout_height="wrap_content"
62                    android:src="@drawable/fs_indeterminate"
63                    android:layout_marginRight="@dimen/js_padding"/>
64                <TextView
65                    android:layout_width="wrap_content"
66                    android:layout_height="wrap_content"
67                    android:text="@string/js_idle_item_idle_on"
68                    android:textSize="16dp"/>
69            </LinearLayout>
70            <include layout="@layout/pass_fail_buttons" />
71        </LinearLayout>
72    </ScrollView>
73</LinearLayout>
74